html – 如何使按钮填充表格单元格

前端之家收集整理的这篇文章主要介绍了html – 如何使按钮填充表格单元格前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个 HTML
<p align='center'>
<table width='100%'>
<tr>
<td align='center'><form><input type=submit value="click me"></form></td>
</tr>
</table>
</p>

…导致一个表和按钮,看起来像这样…

…这很好,但是如何使按钮填满整个单元格?

谢谢!

解决方法

对于初学者:
<p align='center'>
<table width='100%'>
<tr>
<td align='center'><form><input type=submit value="click me" style="width:100%"></form></td>
</tr>
</table>
</p>

注意,如果输入按钮的宽度为100%,则不再需要属性“align =”center“”.

这将是最佳解决方案:

<p align='center'>
<table width='100%'>
<tr>
<td><form><input type=submit value="click me" style="width:100%"></form></td>
</tr>
</table>
</p>
原文链接:https://www.f2er.com/html/230667.html

猜你在找的HTML相关文章