您好我有以下(查看)html代码并且css产生了这个结果,我如何对齐它?
结果
查看
<div class="divfloatleft" >@Html.DropDownListFor(model => model.tintFactorType , slFactorType, new { @class = "divfloatleft rulestextbox5" })</div>
<div class="divfloatleft" >@Html.TextBoxFor(model => model.decFactorValue, new { @class = "divfloatleft rulestextbox6" })</div>
<div class="divfloatleft" >@Html.TextBoxFor(model => model.decMaxBonus, new { @class = "divfloatleft rulestextbox7" })</div>
<div class="divfloatleft" >@Html.TextBoxFor(model => model.nvarMsg , new { @class = "divfloatleft rulestextbox8" })</div>
<div class="divfloatleft" >@Html.TextBoxFor(model => model.varVCode , new { @class = "divfloatleft rulestextbox9" })</div>
<div onclick="removeControl(this);return false;" class="remove removeimg divfloatleft"></div>
CSS
.rulestextbox5 {
min-width: 125px !important;
width:125px !important;
height:30px !important;
margin-right:6px;
top:30px;
}
.rulestextbox6 {
min-width: 80px !important;
width:80px !important;
height:20px !important;
margin-right:6px;
}
.rulestextbox7 {
min-width: 89px !important;
width:89px !important;
height:20px !important;
margin-right:6px;
}
.rulestextbox8 {
min-width: 72px !important;
width:72px !important;
height:20px !important;
margin-right:6px;
}
.rulestextbox9 {
min-width: 70px !important;
width:70px !important;
height:20px !important;
margin-right:6px;
}
.removeimg {
cursor:pointer;
width: 19px !important;
height: 18px !important;
background: transparent url("images/basicsetup/remove.png") no-repeat center center !important;
}
答案 0 :(得分:0)
将所有这些放在一个包含5列和1行的表中是个好主意。 除非您需要,否则无需为每个组件使用单独的div。我把一个组件作为一个例子,其余的应该以同样的方式完成。
<table>
<tr>
<td>
@Html.DropDownListFor(model => model.tintFactorType , slFactorType, new { @class = "divfloatleft rulestextbox5" })
</td>
</tr>
</table>
如果您需要使用类或ID,只需使用span标记将其添加到它们,因为您需要使它们消失。
答案 1 :(得分:0)
请记住使用开发工具检查除了您向我们展示的CSS之外可能影响您的组合框和div的CSS。
position: relative;
top: 0px;
答案 2 :(得分:-1)
只需为.divfloatleft
添加display:blockCSS:
.divfloatleft {
display:inline-block;
float:left;
}