echo '<form action="' . $_SERVER['PHP_SELF'] . '" method="post" ID="crud_form">'; echo '<table ID="table_articles">'; echo '<tr><td>Article Title:</td><td> <input type="text" name="art_Title" /></td></tr>'; echo '<tr><td>Author:</td><td> <input type="text" name="author" /></td></tr>'; echo '<tr><td>Date Posted:</td><td> <input type="text" name="d_posted" /></td></tr>'; echo '<tr><td>Article Text:</td></tr>'; echo '<tr><td><textarea rows="10" columns="60" name="art_text" ></textarea></td></tr>'; echo '<tr><td><input type="submit" name="submit_art" value="submit" /></td></tr>'; echo '</table>'; echo '</form>';
CSS
#crud_form { color:red; position:absolute; left:300px; top:200px; border-style:outset; border-wIDth:5px; border-color:red; background-color:#cccccc; } #table_articles { color:red; wIDth:450px; height:300px; }
思考?谢谢您的帮助.
解决方法 < td colspan =“2”> …< / td>绝对正确.<table border="1"> <tr> <td>Column 1</td> <td>Column 2</td> </tr> <tr> <td colspan="2"><textarea /></td> </tr></table>
http://jsfiddle.net/uZuhp/
总结以上是内存溢出为你收集整理的html – 如何让textarea跨越表的两列全部内容,希望文章能够帮你解决html – 如何让textarea跨越表的两列所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)