编程宝库 - 技术改变世界
编程宝库
编程宝库提供了 JS 在线测试工具,可在线测试 JavaScript 代码,你可以在代码编辑器中输入 JavaScript 代码并点击运行查看结果。
源代码
点击运行
<!DOCTYPE html> <html> <head> <style> 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">无下边框。</p> <p class="dotted">点状下边框。</p> <p class="dashed">虚线下边框。</p> <p class="solid">实线下边框。</p> <p class="double">双线下边框。</p> <p class="groove">凹槽下边框。</p> <p class="ridge">垄状下边框。</p> <p class="inset">内陷下边框。</p> <p class="outset">凸出下边框。</p> </body> </html>
运行结果