CSSが適用されたWebページにおいてヘッダ <h1> やテーブルヘッダ <th> の小文字が大文字に自動変換される。
- 大文字変換 : text-transform: uppercase; (JAVASCRIPT)
- 変換なし : text-transform: none; (JavaScript)
例
1 2 3 4 5 6 7 8 9 |
.comment-content th { font-size: 11px; font-size: 0.785714286rem; line-height: 2.181818182; font-weight: bold; - text-transform: uppercase; + text-transform: none; color: #636363; } |