Brian Boatright
Brian Boatright

Reputation: 36774

How to Hide a Textbox with only CSS

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

Answers (1)

funerr
funerr

Reputation: 8176

css:

#customer_custom1 {
  display: none;
}

Upvotes: 13

Related Questions