class representation in css code example
Example: how to create a css class
<style>
.myclass { /* CLASS CREATED */
background-color: transparent;
height:50px;
width:50px;
}
</style>
<body>
<div class="myclass"></div>
<body>
<style>
.myclass { /* CLASS CREATED */
background-color: transparent;
height:50px;
width:50px;
}
</style>
<body>
<div class="myclass"></div>
<body>