Something going on with the content area under this post…
https://dev.to/jess/what-was-your-win-this-week-dch
Looks like maybe a missing closing div or something (notice the lack of padding at the bottom in addition to the alignment issue)
Only that post is off from what I see right now.
In terms of the page's HTML, the div elements for classes show-page-content-display
, more-articles
and id additional-content-area
ended up being added outside the main div with class home
. Due to this, the margin-property they have of 25px
ends up being taken from main page-content
div rather than home
.
The standard behavior for them is to be inside the class home
div, fixes the issue:
This could be a caching or markdown issue, we're thinking the latter. There might be an unclosed div in one of the comments on the post that's creating this.
Resolved with https://github.com/thepracticaldev/dev.to/pull/4445
Most helpful comment
In terms of the page's HTML, the div elements for classes

show-page-content-display
,more-articles
and idadditional-content-area
ended up being added outside the main div with classhome
. Due to this, the margin-property they have of25px
ends up being taken from mainpage-content
div rather thanhome
.The standard behavior for them is to be inside the class

home
div, fixes the issue: