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.๐๐
12 comments
Like
12 Comments
Commenting on this post isn't available anymore. Contact the site owner for more info.
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>