I came across this query when reading about relative and absolute size in CSS.
What distinguishes xx-large from larger besides absolute and relative size? what does "scaling factor" also mean?
The larger seems to be smaller than xx-large in the browser. why?
.one{
font-size:xx-large;
}
.two{
font-size:larger;
}
<!DOCTYPE html>
<head>
<title>CSS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="one">hello</h1>
<h1 class="two">hello</h1>
</body>
</html>