Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8574

親要素の幅を超えたときのいろいろ

$
0
0

通常時

通常時は以下のように子要素の幅が親要素を超えた場合は文字が折り返される。

<body><divclass="box"><p>あああああああああああああ</p></div></body>
.box{border:1pxsolidred;height:100px;width:100px;}

スクリーンショット 2019-11-06 18.31.54.png

折り返しを禁止する

.box{border:1pxsolidred;height:100px;width:100px;white-space:nowrap;}

white-space: nowrap;とすることで、折り返しを禁止する。

スクリーンショット 2019-11-06 18.34.52.png

はみ出した文字を非表示にする

.box{border:1pxsolidred;height:100px;width:100px;white-space:nowrap;overflow:hidden;}

white-space: nowrap;overflow: hidden;を組み合わせることで実現

スクリーンショット 2019-11-06 18.38.24.png


Viewing all articles
Browse latest Browse all 8574

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>