x
<html>
<head>
<style>
*{
font-size:20px;
color:red;
}
</style>
</head>
<body>
<p>In this case, universal selector ('*') can design any element.</p>
<samp>You can see that the content inside samp tag.</samp>
</body>
</html>
<html>
<head>
<style>
*{
font-size:20px;
color:red;
}
</style>
</head>
<body>
<p>In this case, universal selector ('*') can design any element.</p>
<samp>You can see that the content inside samp tag.</samp>
</body>
</html>