From a0546318f94d9e40e41268e108f6f42c874dc327 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sat, 30 Jul 2022 22:01:33 +0200 Subject: [PATCH] LibWeb: Make elements bold by default --- Userland/Libraries/LibWeb/CSS/Default.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index addde644f4..8319932a48 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -187,6 +187,10 @@ th { display: table-cell; } +th { + font-weight: bold; +} + col { display: table-column; }