I am using a table to display data pulled from two database tables. I am trying to put the information in two rows seperated by a hr tag to create a line between them. However the last cell (in this case) does not have anything to be input into the bottom of it. It here a character that is the same height as a letter that I can put in there to make the hr tag line up with the others while still not being visible to the user?
Share
To get a blank character, use the following HTML entity:
In order to draw lines, however, I would not use an
<hr>.Use CSS to define your table borders:
You can do this at the table, row, or cell level (or any HTML element for that matter), which makes it very flexible, and renders the
hrtag superfluous in this instance.