Closed bunbutterjam closed 4 years ago
//html
`
// css
.posts li { align-items:left; display: flex; justify-content:space-between; margin: .5rem; margin-left: -0.6rem; }
display type flex creates white space margin, but if we change it to inline-block the formatting goes. in the demo, it can be seen on the search page.
//html
`
{% for post in site.posts %}-
{{ post.title }}
{% endfor %}
`
// css
.posts li { align-items:left; display: flex; justify-content:space-between; margin: .5rem; margin-left: -0.6rem; }