CSS: 不換行 寫法
平常 Html 寫到 FORM 會讓造成空隔多空一行 等等的問題..
以往都是將 Form 塞到 Table 跟 tr 間 的這些方法來解決..
css 有簡易的解法~~~ 照下面的一設就搞定了~
form{margin:0px; display:inline}
margin: 上下左右間隔都設為 0px
display: inline 之後顯示的秀在同一行.
<h1> 想不換行也是同樣解法. </h1> , 只要<h1 style="display: inline;"> 就可以了.
文章来源:http://computer.mblogger.cn/wucountry/posts/43259.aspx