Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the easiest way to remove <fieldset> border lines?

Tags:

html

css

What's the easiest way to remove the border lines of a <fieldset>?

I mean a cross-browser solution... is that possible ?

like image 766
aneuryzm Avatar asked Nov 19 '10 23:11

aneuryzm


People also ask

How do you hide border lines?

Go to Design > Page Borders. In the Borders and Shading box, on the Page Border tab, select the arrow next to Apply to and choose the page (or pages) you want to remove the border from. Under Setting, select None, and then select OK.


1 Answers

fieldset {     border: 0; } 
like image 123
Marko Avatar answered Sep 20 '22 01:09

Marko