次の例では、中央に配置された画像の左端にキャプションを簡単に揃えることはできますか?水平に配置された画像の左にキャプションを配置
現在、表示は次のようになります。
____________________
| |
| |
| |
| |
|____________________|
This is my caption
私はそれはあなたがこのようにそれを行うことができ、この
____________________
| |
| |
| |
| |
|____________________|
This is my caption
.container{
width: 100%;
height:200px;
}
img{
width: 400px;
height:50px
}
.figure{
text-align: center;
}
.caption{
text-align: left;
}
<div class="container">
<figure class="figure">
<img src=""/>
<figcaption class="caption">
This is my caption.
</figcaption>
</figure>
あなたはそれを左に揃えたい場合は、なぜ中央に整列 '.figure'はありますか? – RobertAKARobin
イメージを親コンテナの中央に揃えたいが、その下にあるキャプションを中央のイメージの左端に合わせる。 –