简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <style> p { border-style:solid; } p.none {border-right-style:none;} p.dotted {border-right-style:dotted;} p.dashed {border-right-style:dashed;} p.solid {border-right-style:solid;} p.double {border-right-style:double;} p.groove {border-right-style:groove;} p.ridge {border-right-style:ridge;} p.inset {border-right-style:inset;} p.outset {border-right-style:outset;} </style> <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> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: