소스 검색

LibWeb: Make <th> elements bold by default

Karol Kosek 3 년 전
부모
커밋
a0546318f9
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      Userland/Libraries/LibWeb/CSS/Default.css

+ 4 - 0
Userland/Libraries/LibWeb/CSS/Default.css

@@ -187,6 +187,10 @@ th {
     display: table-cell;
 }
 
+th {
+    font-weight: bold;
+}
+
 col {
     display: table-column;
 }