A)我希望我的过滤器 div 与产品的左侧对齐,而不是在产品上方。
B)我希望产品 div 中的文本更靠近图像,而不是太远,如下面的预览所示。
我正在使用 php laravel。
我如何实现这一目标?
这是代码:
@extends('layouts.app')
@section('content')
<div id="container">
<h1> Filters </h1>
{!! Form::open(['action' => 'PostsController@store', 'method' =>'POST']) !!}
<div class="form-group">
{{ Form::checkbox('agree', 'yes') }} {{Form::label('id', 'ID')}} <br>
{{ Form::checkbox('agree', 'yes') }} {{Form::label('id', 'ID')}}
</div>
{{--{{Form::submit('Submit', ['class'=>'btn bt-primary'])}}--}}
{!! Form::close() !!}
<h1>Products</h1>
@if(count($products) > 0)
@foreach($products as $product)
<div class="well">
<div class="row">
<div class="col-md-4 col-sm-4">
<img style="width:40%" src="/{{$product->photo}}">
</div>
<div class="col-md-2 col-sm-2">
<h3><a href="/products/{{$product->id}}">{{$product->name}}</a></h3>
<small> {{$product->description}}</small>
</div>
</div>
</div>
@endforeach
@else
<p>No posts found</p>
@endif
</div>
@endsection
任何帮助,将不胜感激。谢谢!