我应该设计DIV或其封闭内容吗?

时间:2010-09-23 05:26:47

标签: css

<div class="panel" id="Panel1">
<fieldset style="position: absolute; top:8px; left: 136px; width: 136px; height: 64px;">
<legend> </legend>
<div class="Label" id="Label1" style="position: absolute; top:8px; left: 16px; width: 81px; height: 14px;">Hello world</div>  
<div class="tLabel" id="Label2" style="position: absolute; top:32px; left: 16px; width: 54px; height: 14px;">A second piece of text</div>  
</fieldset>  
</div>

我是一名CSS新手并且使用google搜索&amp;看到了很多有关这方面的疑惑信息。

如果我想要定位,风格在哪里?封闭的DIV?在封闭的字段集上?关于fieldset包含什么?一些排列?


我是否需要围绕FIELDSET封闭DIV?

1 个答案:

答案 0 :(得分:1)

创建CSS样式时的经验法则是尽可能地重复使用它。

在上面的例子中,你绝对使用CSS类放置DIV,然后相对地放置DIV中的所有元素。您应该(1)设置DIV的位置,(2)移除FIELDSET的位置,(3)移除内部DIV的位置(ID = Label1),以及(4)向内部DIV添加边距或填充( ID = Label2的)。