顯示具有 CSS 標籤的文章。 顯示所有文章
顯示具有 CSS 標籤的文章。 顯示所有文章

2013年9月7日 星期六

Html 表單 Form 換行排除

方法一 
Inline Styles
<form style="margin:0px; display:inline;">
</form>

方法二
Internal Style Sheet
<head>
<style type="text/css">
form{
margin:0px; 
display:inline
}
</style>
</head>

2013年7月1日 星期一