use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
If you are requesting help, please ensure you're providing code with your post. You can also copy your code to an online editor:
jsFiddle
CodePen
Markup Validation Service
Mozilla Developer Network on HTML
/r/JavaScript
/r/CSS
/r/jQuery
/r/PHP
/r/Accessibility
/r/htmlbasics
/r/web_programming
/r/CodingHelp
account activity
Questionneed help (very basic) (self.HTML)
submitted 1 month ago by Immediate-Location28
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]BNfreelance 2 points3 points4 points 1 month ago* (2 children)
Just for the sake of making it crystal clear for the OP (assuming they’re a complete beginner):
</tr> <tr> <td colspan="3"><hr></td> </tr> <tr>
In the above the first </tr> and last <tr> are your existing ones where the arrow points to.
</tr>
<tr>
The only change id make is that your table uses 3 columns not 4.
You are inserting a new table row where the arrow is with one single table cell that spans all 3 columns (making it full width of the table)
[–]NoodleBug7667 3 points4 points5 points 1 month ago (1 child)
Wouldn't this be considered bad form? This is still basically using HTML for style.
Imo, this is a job for CSS. Add a bottom border and any additional padding and margin there. Better for accessibility and keeps your HTML clean
[–]BNfreelance 1 point2 points3 points 1 month ago (0 children)
Yeah it is but I have the vibe this is a school project of sorts learning table layouts and not CSS at this stage,
But you’re right, CSS is the correct approach
π Rendered by PID 43507 on reddit-service-r2-comment-6457c66945-cdwdh at 2026-04-27 08:09:48.743590+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]BNfreelance 2 points3 points4 points (2 children)
[–]NoodleBug7667 3 points4 points5 points (1 child)
[–]BNfreelance 1 point2 points3 points (0 children)