dreamweaver中如何用css控制DIV边框颜色 高度宽度 等属性,能详细点更好,小弟先谢过!

如题所述

border-color
width
height

可以在dreamweaver的css编辑器中设置,代码自动的出来了
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-04-15
<style type="text/css">
#nihao{ border:1px solid #F00; /* 1px是边框的大小,solid意思是边框是实线,#FOO是边框的颜色*/
width:1000px; /* 这是宽度*/
height:200px; /*这是高度*/
font-size:12px; /*这是div中字体的大小*/
}
</style>

<body>
<div id="nihao"></div>
</body>
第2个回答  2012-04-15
自己领悟
第3个回答  2012-04-15
border属性 建议你看下手册 没什么难度 具体例子 比如 实体线border:1px #ccc solid
相似回答