border-style:double有一個用途很有意思了,就是可以單純的依靠border制作三橫線!
如上圖的代碼:
{ width:120px; height:20px; border-top:60px double; border-bottom:20px solid; }
再來一個案例:
.double{ width:40px; height:8px; border-top:24px double #f35; border-bottom:8px solid #f35; } </style> <div class="double"></div>