With CSS3 both the selector :not() and the attribute contains selector , but when mixing both, a problem arises, it does not work.
HTML:
<input type='text'/> <input type='text' id="dasd_Date_asd"/>
CSS
input[type='text']:not(input[id*='Date']) { display:none; }
Can anyone tell what is going on here?
Note. When changing the markup, we are not given any privileges.
source share