0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

bootstrap gridにて英数字がうまく表示されない時の修正

Posted at

bootstrap gridにて英数字がうまく表示されない場合の対策は別途CSSにてclassを下記の様に作成し対応。

    <style>
        .custom-break {
                overflow-wrap: break-word;
                word-wrap: break-word; /* 古いブラウザとの互換性のため */
            }
    </style>
    
<div class="row">
  <div class="col-sm-3">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</div>
  <div class="col-sm-3">col2</div>
  <div class="col-sm-3">col3</div>
  <div class="col-sm-3">col4</div>
</div>
対策後
<div class="row">
  <div class="col-sm-3 custom-break">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</div>
  <div class="col-sm-3 custom-break">col2</div>
  <div class="col-sm-3 custom-break">col3</div>
  <div class="col-sm-3 custom-break">col4</div>
</div>

実例

対応後

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?