How to make <td>
width exactly as input ok button and other input maximum width?And how to set text size of input's value="Ok"
:
<div id="resourcelink">
<form method="POST" action="FeedController">
<table id="resource-link">
<tr>
<td><input type="text" id="resourcelink" name="sourceLink" /></td>
<td><input type="submit" name="linkSub" value="Ok" /></td>
</tr>
</table>
</form>
</div>
<body>
Css:
input#resourcelink {
width: 100%;
}
Instead of
<input type="submit">
, try using a<button>
element. You'll find that it's easier to apply CSS styles to.If you apply
boz-sizing: border-box
CSS rules to the form elements, then you can simply give them a width of 100% and they will fill the available space perfectly:(Note:
border-box
rules are supported in all modern browsers, but if you want to support older browsers then you'll have to include workarounds.)