我创建了一个名为 Bank 的页面,并希望使用HTML自定义它。
但是当使用<div>
标记时,它不会呈现。这是我的代码......
<div dir="ltr" style="text-align: left;" trbidi="on">
<p style="background-color: burlywood; font-size:24">here are my three div tags</p>
<div style="background-color: silver;margin-left: 10;visibility:visible; height:300; width:200; margin-left:10;display:inline-block"></div>
<div style="background-color: silver; height:300; width:200;visibility:visible; display:inline-block ; margin-block-end: 10"></div>
<div style="background-color: silver; height:300; width:200; display:inline-block" ></div>
<p style="background-color:burlywood; font-size: 24">here my div tag ended but not rendering</p>
</div>
这是我的输出
答案 0 :(得分:2)
You need to use a length unit like px
with height, width, margin and font-size
<div dir="ltr" style="text-align: left;" trbidi="on">
<p style="background-color: burlywood; font-size:24px">here are my three div tags</p>
<div style="background-color: silver;margin-left: 10px;visibility:visible; height:300px; width:200px; margin-left:10px;display:inline-block"></div>
<div style="background-color: silver; height:300px; width:200px;visibility:visible; display:inline-block ; margin-block-end: 10px"></div>
<div style="background-color: silver; height:300px; width:200px; display:inline-block" ></div>
<p style="background-color:burlywood; font-size: 24px">here my div tag ended but not rendering</p>
</div>
答案 1 :(得分:1)
您必须指定您的测量单位。
例如,font-size CSS属性指定字体的大小。设置此属性也可能会更改其他项的大小,因为它用于计算em,ex和各种其他相对单位的值。
同样适用于您的保证金。
我希望这会有所帮助。有关详细信息,请查看为css属性分配值的标准。