1. border-bottom-style border-bottom-style: none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset; border-bottom-style是用来设置边框样式的属性。 取值说明: none:没有边框(默认) hidden:同none,但是打印的时候依然会有边框。 dotted:点线边框 dashed:虚线边框 solid:实线边框(默认值) double:双...
CSS border-bottom-style 属性实例 设置底部边框样式: p { border-style:solid; border-bottom-style:dotted; } 尝试一下 » 属性定义及使用说明border-bottom-style属性设置元素底部边框样式。默认值: not specified 继承: no 版本: CSS1 JavaScript 语法: object object.style.borderBottomStyle="dotted"...
CSS border-bottom-style 属性实例 设置底部边框样式: p { border-style:solid; border-bottom-style:dotted; } 尝试一下 » 属性定义及使用说明border-bottom-style属性设置元素底部边框样式。默认值: not specified 继承: no 版本: CSS1 JavaScript 语法: object object.style.borderBottomStyle="dotted"...
所有浏览器都支持 border-bottom-style 属性。 注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit" 或 "hidden"。定义和用法 border-bottom-style 设置元素下边框的样式。 只有当这个值不是 none 时边框才可能出现。 在CSS1 中,HTML 用户代理只需支持 solid 和 none。 默认值: not spe...
JavaScript 语法: object.style.borderBottomStyle="dotted"实例 设置下边框的样式: p { border-style:solid; border-bottom-style:dotted; } TIY浏览器支持 所有浏览器都支持 border-bottom-style 属性。 注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit" 或 "hidden"。可能的值 值描...
border-bottom-style属性用于设置一个元素底部边框的线条样式。 在CSS中有9种预定义的边框样式,这些边框样式与9个边框关键字一一对应。 官方语法 border-bottom-style:none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset ...
CSS border-bottom-style 属性实例 设置底部边框样式: p { border-style:solid; border-bottom-style:dotted; } 尝试一下 » 属性定义及使用说明border-bottom-style属性设置元素底部边框样式。默认值: not specified 继承: no 版本: CSS1 JavaScript 语法: object object.style.borderBottomStyle="dotted"...
CSS border bottom style 属性设置元素下边框的线条样式。实例 设置下边框的样式:<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} ...
border-bottom-style: solid; border-bottom-style: double; border-bottom-style: groove; border-bottom-style: ridge; border-bottom-style: inset; border-bottom-style: outset; /* Global values */ border-bottom-style: inherit; border-bottom-style: initial; border-bottom-style: unset; 注意:规范没...