Posts: 219
Name: Jim
Location: Down the Yellow Brick Road
|
so, you have this
Code:
input
{
width: 100px;
}
it will effect all input elements in some browser, but in my Firefox browser on my Linux it only effects "text" based input elements
why?
it will ignore radio and checkbox input elements
hahaha
I solved it by doing this:
Code:
input[type="text"], input[type="radio"], input[type="checkbox"]
{
width: 100px;
}
crazy code world
crazy standards
when all fails, invent your own technology, and cause more confusion

|