覺得
(應該要用一般瀏覽器常見的 style,legend 的文字在邊線左上角),而不是用各 DW tpl 自己的樣式),但當然不可能每次都打一堆 HTML 碼:<html><fieldset><legend>像這樣的</legend></html>fieldset 蠻好用的 <html></fieldset></html>
考慮兩種解法:
因為不同的 DW tpl 各有不同的 fieldset、legend CSS,所以本來我想就不做 plugin 了,用下面的純 wrap+CSS 法就好。但後來又想,我也可以弄 plugin,但產生 div.fieldset
之類的啊。所以就再次來挑戰看看 syntax plugin 吧(雖然之前從來沒成功)。
一般瀏覽器常見的 legend style 到底是怎樣?
擬真:
.wrap_fieldset { border: 2px groove threedface; border-top: none; padding: 0.5em; margin: 1em 2px; } .wrap_fieldset>.wrap_legend { font: 1em normal; margin: -1em -0.5em 0; } .wrap_fieldset>.wrap_legend>p { float: left; } .wrap_fieldset>.wrap_legend:before { border-top: 2px groove threedface; content: ' '; float: left; margin: 0.5em 2px 0 -1px; width: 0.75em; } .wrap_fieldset>.wrap_legend:after { border-top: 2px groove threedface; content: ' '; display: block; height: 1.5em; left: 2px; margin: 0 1px 0 0; overflow: hidden; position: relative; top: 0.5em; }
可以看到我把原作者的 span 改成了 p,因為 wrap plugin 本身就會產生 p,這樣少一道輸入。結果:
標題
內容
<div fieldset><div legend>標題</div> 內容 </div>
.wrap_fieldset>.wrap_legend>p { margin-top: 0; margin-bottom: 0; }
↑加上這兩行的話可以解決 legend p 的高度,以及因為 float 而影響內容位置的問題 這樣可用性就提高了~