html中文本下面怎么有虚线
程序员文章站
2022-03-04 18:26:52
...
在html中,可以使用border-bottom设置文本下面有虚线,只需要给文本元素设置“border-bottom:width dashed color”样式即可。设置元素下边框的样式时,只有当这个值不是none时边框才可能出现。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
border-bottom 简写属性把下边框的所有属性设置到一个声明中。
可以按顺序设置如下属性:
border-bottom-width
border-bottom-style
border-bottom-color
语法:
border-bottom:width style color;
如果不设置其中的某个值,也不会出问题,比如 border-bottom:solid #ff0000; 也是允许的
设置元素下边框的样式时,只有当这个值不是 none 时边框才可能出现。
例子:
<html> <head> <style type="text/css"> p { border-style: solid; } p.none { border-bottom-style: none; } p.dotted { border-bottom-style: dotted; } p.dashed { border-bottom-style: dashed; } p.solid { border-bottom-style: solid; } p.double { border-bottom-style: double; } p.groove { border-bottom-style: groove; } p.ridge { border-bottom-style: ridge; } p.inset { border-bottom-style: inset; } p.outset { border-bottom-style: outset; } </style> </head> <body> <p class="none">No bottom border.</p> <p class="dotted">A dotted bottom border.</p> <p class="dashed">A dashed bottom border.</p> <p class="solid">A solid bottom border.</p> <p class="double">A double bottom border.</p> <p class="groove">A groove bottom border.</p> <p class="ridge">A ridge bottom border.</p> <p class="inset">An inset bottom border.</p> <p class="outset">An outset bottom border.</p> </body> </html>
效果:
扩展资料:
border-bottom-color 设置元素的下边框的颜色。
只能定义纯色,而且只有当边框的样式是一个非 none 或 hidden 的值时边框才可能出现。
注释:请始终把 border-style 属性声明到 border-color 属性之前。元素必须在您改变其颜色之前获得边框。
属性值:
推荐学习:html视频教程
以上就是html中文本下面怎么有虚线的详细内容,更多请关注其它相关文章!
上一篇: 小程序如何接入和维护微信登录态?
下一篇: 如何理解javascript中的函数概念
推荐阅读
-
html中播放swf文件,怎么显示下面的开关面板的部分?_html/css_WEB-ITnose
-
请问下面这个数组怎么在HTML中遍历出来,试了很多方法还是报错
-
在网页中如何实现下面的翻页导航效果?(有图有真相,图片在我下面的楼层中)_html/css_WEB-ITnose
-
请问下面这个数组怎么在HTML中遍历出来,试了很多方法还是报错
-
怎么让下面html代码中的p标签右对齐
-
网站导航栏有下拉菜单,但是下拉菜单出现后会把下面的内容顶下去,这个怎么办?求大神_html/css_WEB-ITnose
-
顶部有个固定的导航栏,页面内定位时怎么定在导航栏下面。_html/css_WEB-ITnose
-
网站导航栏有下拉菜单,但是下拉菜单出现后会把下面的内容顶下去,这个怎么办?求大神_html/css_WEB-ITnose
-
怎么让下面html代码中的p标签右对齐
-
顶部有个固定的导航栏,页面内定位时怎么定在导航栏下面。_html/css_WEB-ITnose