Answers for "css body and html"

3

how to style body using css

body {
  /*type your styling here*/
}
Posted by: Guest on May-30-2020
0

css in head or body

<head>
 <style>
  .myclass { font-size: 12px; }
 </style>
</head>
// or ...
<body>
 <button style="font-size: 12px;"></button>
</body>
Posted by: Guest on July-10-2020

Browse Popular Code Answers by Language