Answers for "css .body"

3

how to style body using css

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

html body tag

<body>
  <!-- this is the body,the body 
	lement contains all the contents of an HTML document, 
	such as headings, paragraphs, images, hyperlinks, tables,
 	lists, etc -->
</body>
Posted by: Guest on August-25-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