Home html empty row in html table

empty row in html table

Author

Date

Category

How do I make one row in the html table empty to be used as a delimiter?


Answer 1, authority 100%

For example, like this:

& lt; table border = "1" & gt;
  & lt; tr & gt;
   & lt; td & gt; & lt; / td & gt; & lt; td & gt; & lt; / td & gt; & lt; td & gt; & lt; / td & gt;
  & lt; / tr & gt;
  & lt; tr & gt;
   & lt; td colspan = "3" & gt; & lt; / td & gt;
  & lt; / tr & gt;
  & lt; tr & gt;
   & lt; td & gt; & lt; / td & gt; & lt; td & gt; & lt; / td & gt; & lt; td & gt; & lt; / td & gt;
  & lt; / tr & gt;
& lt; / table & gt;

The colspan attribute specifies the number of columns to combine.

Programmers, Start Your Engines!

Why spend time searching for the correct question and then entering your answer when you can find it in a second? That's what CompuTicket is all about! Here you'll find thousands of questions and answers from hundreds of computer languages.

Recent questions