サイズを変更すると、メニューのサイズも変更されるため、2 つのコンテナーが必要です。ここに私のインデックスがありますhttp://paste.laravel.com/GN8、私はこの部分が欲しいです:
@if ($news->count())
@foreach($news as $news)
<div class="container">
<div class="doc-content-box">
<legend>{{ $news->title }} <div id="spaceholder"></div>
<p>
<h6><i class="icon-calendar"></i> {{ $news->created_at }} <a href="/profile/{{ $news->author }}">{{ $news->author }}</a>
</p>
</h6>
</legend>
<div style="margin-top:7px">
<p>{{ $news->content }}</p>
</div>
</div> <!-- /container -->
<div id="spaceholder"> </div>
@endforeach
@else
{{ 'There are no news.' }}
@endif
幅 749px の場合、先ほど追加した .container をコピーすると左に引っ張るだけです。のようなものにしたいcontainer-two
。
コンテナをオーバーライドするカスタム CSS もあります: http://paste.laravel.com/JEt