Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これがウェブページです。
div画像をしっかりとラップアラウンドさせるにはどうすればよいですか?これで、4pxの画像の下部に貼り付けられます(赤い線を参照してください。divの赤い背景を付けました)。
div
それらの4pxがどこから来ているのか、そしてそれらを取り除く方法がわかりません。
画像vertical-align: bottomを指定するか、含まれているdivを指定しline-height: 0ます。
vertical-align: bottom
line-height: 0
これは、画像が設定され、要素がレンダリングされるinline-block方法が原因です。inline画像をブロックレベルの要素にすることもできます。
inline-block
inline
あなたの選択。