Is it possible to set the width of a textfield (and only the textfield, not select, textarea or other input fields), using CSS?Yes it is...
<input type="text" style="width: 300px;">
or, if you have to do more than one, use a class:
<style type="text/css">
.input {
width: 300px;
}
</style>
</html>
<body>
<form>
<p><input type="text" class="input"><br>
<input type="text" class="input"></p>
</form>Thanks so much!You are welcome...
<input type="text" style="width: 300px;">
or, if you have to do more than one, use a class:
<style type="text/css">
.input {
width: 300px;
}
</style>
</html>
<body>
<form>
<p><input type="text" class="input"><br>
<input type="text" class="input"></p>
</form>Thanks so much!You are welcome...