LoginSignup
1
0

More than 1 year has passed since last update.

htmlとcssのメモ

Last updated at Posted at 2021-02-24
  • いつか整理します

有用な記事


1行が長いけどスクロールバーでなく折り返したい時

関連するstyle

body {
word-wrap: break-word;
white-space: pre-wrap;
overflow-wrap: break-word;
}

などを設定する.

参考


テーブル内で半角文字のみでも自動改行させたい時

table tr td {
word-break: break-all;
}

などを設定する.

「table tr td」が意味するのは, 「table要素の子要素のtr要素の子要素のtd要素に関する設定」であるということ.

参考


htmlとcssでサイドバー固定


htmlで論文っぽい2段組み


cssテーブルデザイン

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0