LyndonOHRC
Programmer
I am trying to set the properties of all Input tags where type is text. I'm missing something here and appreciate any help.
This method works but I'm trying to use a style tag to set these properties for all input tags on my site:
This is the style tag method, I found on w3Schools, but it's not changing the properties:
Lyndon
---People Remember about 10% of what you say ---They never forget how you made them feel. Covey
This method works but I'm trying to use a style tag to set these properties for all input tags on my site:
Code:
<input name="ssn" size="11" type="text" style="font-size: 14px; line-height: 14px; height: 17px;">
This is the style tag method, I found on w3Schools, but it's not changing the properties:
Code:
<style type="text/css">
input[type="text"] {
font-size: 14px;
line-height: 14px;
height: 17px;
}
</style>
Lyndon
---People Remember about 10% of what you say ---They never forget how you made them feel. Covey