0
How to make the table bigger?
2 Answers
+ 2
table,
input {
width: 100%;
}
+ 1
If you mean wider, you could add this property to the table tag:
width=100%
But more generally, CSS is typically used to control how the content will be displayed.
You can individually style each tag, like TR, TD etc and add padding, margin etc. Will be much easier with stylesheets to do it neatly - you can also start the css course in paralel with HTML because they are closely related.