You may ask me with any questions regarding on CSS chapter. I will regularly check the post and will try my best to give the solution for your problems.๐๐
Sir, for class selector, if we want to use more than 1 class, do we really don't need to put "," in between the class? Is there any effect if I put it? Example:
Sir, for class selector, if we want to use more than 1 class, do we really don't need to put "," in between the class? Is there any effect if I put it? Example:
<head>
<style>
.xy {font-size:10pt}
.xx {color:green}
</style>
</head>
<body>
<p>Welcome</p>
<p class = xy, xx> to Uniten </p>
</body>