スタイルシート 文字列を指定した幅を超えたら折り返させる | CSS | みどりのウェブ開発日記

スタイルシート 文字列を指定した幅を超えたら折り返させる

カテゴリ: CSS

記事投稿日: 2013年3月21日



 pre {
  width: 120px;
  white-space: pre;           /* CSS 2.0 */
  white-space: pre-wrap;      /* CSS 2.1 */
  white-space: pre-line;      /* CSS 3.0 */
  white-space: -pre-wrap;     /* Opera 4-6 */
  white-space: -o-pre-wrap;   /* Opera 7 */
  white-space: -moz-pre-wrap; /* Mozilla */
  white-space: -hp-pre-wrap;  /* HP Printers */
  word-wrap: break-word;      /* IE 5+ */
 }

・IEで表の要素の中で折り返させるには

word-break: break-all;







コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA




トップに戻る