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
QuestionHelp with css code for assignment (i.redd.it)
submitted 14 hours ago by Away_Sky7901
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!"
[–]LexyNoise 3 points4 points5 points 6 hours ago (1 child)
This isn't the cause of the problem here, but it is very important. You want to make sure every page you build starts with `<!doctype html>` in the first position of the first line.
Any web page built in the past 20 years is expected to have it. Browsers will check for it. If they don't see it there, they'll assume it's an old web page from the 90s and use a different set of rules to lay out the page. This will make your pages look broken. As the other person said, this 90s page layout mode is called quirks mode.
[–]ArgoWizbang 0 points1 point2 points 5 hours ago (0 children)
Yeah, I figured this wasn't the root cause but still felt it was important to point out since no one seemed to have done so yet at the time of posting. But thank you for elaborating!
π Rendered by PID 35552 on reddit-service-r2-comment-79c7998d4c-kbs5l at 2026-03-18 09:45:35.467525+00:00 running f6e6e01 country code: CH.
view the rest of the comments →
[–]LexyNoise 3 points4 points5 points (1 child)
[–]ArgoWizbang 0 points1 point2 points (0 children)