13 Types of Hairlines for Men and Women (And How to Maintain Yours)
Coming soon
Search
-
QuestionHow do I put a border on the table?
Community AnswerYou can go into the css for 'table' and change the border. It might look something like this: table { border: 1px solid #fff; } -
QuestionHow do I insert pictures into the table?
Community AnswerYou can do that by adding a tag where the text would usually be. -
QuestionWhat will the table look when it is done?
Community AnswerIt will look like a simple collection of boxes with black outlines with the text inside, much like a spreadsheet. -
QuestionWhy do I need to learn CSS?
IsaacCommunity AnswerYou do not need to, but if you do not you cannot color your web page, and that means it will look very basic/rudimentary. -
QuestionHow can I merge cells together?
Kaustubh MaladkarCommunity AnswerUse the span attribute on the td tag. It will then span the number of cells specified by you. -
QuestionHow do I change the size of individual table cells to make some larger than others?
BANIYA MANITEJACommunity AnswerTo make some table cells larger, you can use the `colspan` or `rowspan` attributes or apply specific styles using CSS. In the provided HTML code, you might consider adding inline styles like `style="width: 150px"` to the larger cells.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit