私は次のHTMLを持っています
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
<style>
.box
{
border:solid black 1px;
padding:0px;
margin:0px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<input class="box" style="width:300px;" /><br />
<input class="box" style="width:150px;" />
<input class="box" style="width:150px;" /><br />
<input class="box" style="width:100px;" />
<input class="box" style="width:100px;" />
<input class="box" style="width:100px;" />
</form>
</body>
</html>
アイデアは、テキストボックスが右側でピクセルパーフェクトに仕上げられるべきだということです。
最終的には行 2 と行 3 に間隔を追加して幅を広げて補正しますが、今のところ、この単純なサンプルをレンダリングしてもらいたいと思います。
では、これらのテキストボックスの余白を削除して、適切に配置するにはどうすればよいですか?