CSS - No Css Over-ride
Hi All
I've styled all my input form fields, with background colours and fancy borders, however I've done this teh lazy way and used input, textarea { ...styling stuff } which means all my input fields are styled bu default, however this means that radio buttons are also styles and they look crap. Is there a class I can allocate to radio button, to overide the main style, something like .no-style{ ...this element has no style. } and <INPUT TYPE="radio" class="no-style" ........ any thoughts Similar TutorialsI am unable to get ride of the spacing which firefox and IE is doing with <img ...>. I used margin=0 padding=0 and boarder=0 but still there is a spacing remaining. i.e. when i put 2 images rigth following, between these 2 images is a spacing, while I want that they are just hitting each other. can anyone help me? Code: example: <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td><img scr="..." alt="..."></td></tr> <tr><td><img scr="..." alt="..."></td></tr> there is spacing between these images even i set the following in the CSS: table {margin:0;padding:0;} tr {margin:0;padding:0;} td {margin:0;padding:0;} img {margin:0;padding:0;} when i put the <img ...> inside <p> commands (below example), then IE shows the images without spaceing (what i want), BUT firefox still has this spaceing between images. i am totaly unable to get ride of those sppaces Code: <p><img ...></p> <p><img ...></p> and in css: p {margin:0;padding:0;} img {margin:0;padding:0;} Hi when using a submitbutton (<INPUT TYPE=SUBMIT ...) then the browser makes a grey button with big spaceing left and rigth of the button-text. How can I get rid of this spacing?? I tryed style="margin:0;padding:0;border:0;background-color:#FFFFFF;" The grey desapears, but the big spacing left and rigth is still there. I am aware of image-submitbuttons, but i want to have text-submitbutton. I want to use only html and css. so no images, no javascript, no ... thanks in advanc for help |