While creating my site, I found the following style being automatically applied by Chrome (despite using a clear css file):
input[type="search" i] {
padding: 1px;
}
I believe that 1px padding is messing up the layout of my site, but for the life of me, I can't get rid of it. I believe it has to do with the i
inside of the input tag, which I've never seen before.
What does that i
mean inside of the attribute selector?