3つのdivを使用して、次のような丸い効果を作成したい
<div class="wrapper">
<div class="left-corner"></div>
<div class="center-repeat"></div>
<div class="right-corner"></div>
</div>
.left-corner
と、.right-corner
コーナーの背景画像 css のみがあります。
.wrapper
{
width:100%
height:110px;
}
.left-corner
{
background:...
width:110px;
height:110px;
float:left
}
.right-corner
{
background:...
width:110px;
height:110px;
float:right
}
しかし、使用しようとした中央のdivをどのようにレンダリングする必要がありますwidth:100%
が、コーナーのdivがプッシュされて別の行になり、3つのdivを1行に設定して正常に見えるようにするにはどうすればよいですか?