Reputation: 36774
Can I hide the following textbox using only CSS without using javascript?
<input id="customer_custom1" name="customer[custom1]" type="text" value="1" />
Upvotes: 4
Views: 22502
Reputation: 8176
css:
#customer_custom1 { display: none; }
Upvotes: 13