Answers for "css class selector"

CSS
20

css class

.myclass {
  border:1px solid black;
  background-color: #d2d2d2;
  height:20px;
  width:60px;
}
/*If you give this class to a div in html, it will get the styles you gave
to that class. You can add multiple classes to a div, and multiple divs
can get that class. */
/* I hope I helped! */
Posted by: Guest on June-21-2020
5

css class selector

.class{
    color:red;
}
Posted by: Guest on April-09-2020
3

css calss

.ThisIsAClassName{
  font-family: sans-serif;
}
Posted by: Guest on June-10-2020

Browse Popular Code Answers by Language