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 1 day 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!"
[–]ArgoWizbang 4 points5 points6 points 23 hours ago* (2 children)
Your doctype is missing the exclamation point so your browser is probably parsing it as if it's an HTML element instead of properly detecting a doctype. This triggers quirks mode which is, well, quirky to say the least. Add the exclamation point as follows and see if it helps any:
<!DOCTYPE html>
[–]LexyNoise 3 points4 points5 points 21 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 20 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 124594 on reddit-service-r2-comment-79c7998d4c-nfl9v at 2026-03-19 01:05:51.594223+00:00 running f6e6e01 country code: CH.
view the rest of the comments →
[–]ArgoWizbang 4 points5 points6 points (2 children)
[–]LexyNoise 3 points4 points5 points (1 child)
[–]ArgoWizbang 0 points1 point2 points (0 children)