CSS边框实例:设置下边框的宽度
CSS 代码均位于 HTML 的 head 部分,这样做的目的是为了利于演示例子本身。在实际的开发中,使用 CSS 最好的方式是引用外部样式表。
这里介绍CSS边框实例:设置下边框的宽度
步骤/方法
- 01
<html> <head> <style type="text/css"> p.one { border-style: solid; border-bottom-width: 15px } p.two { border-style: solid; border-bottom-width: thin } </style> </head> <body> <p class="one"><b>注释:</b>"border-bottom-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。</p> <p class="two">Some text. Some more text.</p> </body> </html>
- 02
运行结果如下:
赞 (0)