Hi,
I want to apply the same style to text and email input types.
I tried input[type="text"][type="email"] but it's not working.
Any help?
| SitePoint Sponsor |
Hi,
I want to apply the same style to text and email input types.
I tried input[type="text"][type="email"] but it's not working.
Any help?

Hi,
You can always use separate rules for this.
Code css:input[type="text"], input[type="email"] {}
Thanks a lot
Bookmarks