如何在bloggers blogspot页面中显示div标签?

时间:2018-03-25 06:09:04

标签: html css blogger blogspot

我创建了一个名为 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>

这是我的输出

xxxenter image description herexxx 我也从show HTML字面转换为解释HTML。在页面设置中=&gt; options =&gt;解释打字的HTML。

2 个答案:

答案 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属性分配值的标准。