두 번째 행을 만들려면 Neat의 그리드 컨테이너를 사용하려고하지만 두 번째 행은 첫 번째 행의 텍스트 길이가 다르기 때문에 예상대로 시작되지 않습니다.깔끔한 그리드의 두 번째 행이 제대로 작동하지 않습니다.
html로 :
<section id="featuredpost">
<div class="widget-wrap">
<h3>Vehicula Justo Elit Mollis</h3>
<article class="post">
<a href="#">
<img src="http://placehold.it/350x150">
</a>
<header>
<h4>
<a href="#">Fusce Commodo Ornare Venenatis Egestas</a>
</h4>
</header>
</article>
<article class="post">
<a href="#">
<img src="http://placehold.it/350x150">
</a>
<header>
<h4>
<a href="#">Fusce Commodo Ornare Venenatis Egestas</a>
</h4>
</header>
</article>
<article class="post">
<a href="#">
<img src="http://placehold.it/350x150">
</a>
<header>
<h4>
<a href="#">Fusce Commodo Ornare Venenatis Egestas</a>
</h4>
</header>
</article>
<article class="post">
<a href="#">
<img src="http://placehold.it/350x150">
</a>
<header>
<h4>
<a href="#">Fusce Commodo Ornare Venenatis Egestas</a>
</h4>
</header>
</article>
<article class="post">
<a href="#">
<img src="http://placehold.it/350x150">
</a>
<header>
<h4>
<a href="#">Fusce Commodo Ornare Venenatis Egestas</a>
</h4>
</header>
</article>
<article class="post">
<a href="#">
<img src="http://placehold.it/350x150">
</a>
<header>
<h4>
<a href="#">Fusce Commodo Ornare Venenatis Egestas</a>
</h4>
</header>
</article>
</div>
</section>
SCS들 :
.featuredpost {
@include grid-container;
.post {
@include grid-column(4);
}
}
그리고 여기가 표시 방법의 스크린 샷이다 :,
Example of problem with second row
당신이 볼 수 있듯이 텍스트 때문에 행 1의 첫 번째 게시물의 길이가 행 1의 다른 두 게시물의 텍스트보다 길 때, 두 번째 행에 문제가 발생했습니다. 포스트 요소에 최소 높이를 두어이 문제를 해결할 수 있지만 더 좋은 방법이 있어야합니다. 니트 격자를 올바르게 사용하고 있습니까? 어떤 도움을 주셔서 감사합니다!
Perfect. 왜 내가이 솔루션을 생각하지 않았는지 모르겠다. 감사! – lovestacos