Is it possible to replace <table border = 1> 'with `<table>` + css: `table {...}`?
table{border:1px solid #000;} doesn't seem to work without the border=1 statement. Just like changing <input width=30> to input{width:400px;} , I would like to use <table> and declare the border only in css. Is it possible?
Update my mistake was to use
table{border-width:1px;} instead of for example
table{border:1px solid #000;} - works great.
+4