put a class in css

Solutions on MaxInterview for put a class in css by the best coders in the world

showing results for - "put a class in css"
Santiago
10 Sep 2017
1<html>
2	<head>
3		<style>
4			/* Make sure to use a full stop to instead only focus on the classname that is in your html page */
5			.class {
6  				background-color: #eeeeee;
7			}
8		</style>
9	<head>
10    <body>
11		<div class="class">
12          	<p>hi</p>
13        </div>
14    </body>
15</html>