Page 84 - Modul Web
P. 84
index.html
<!DOCTYPE html>
<html>
<head>
<title>Position CSS</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="kotak">Tutorial position css di www.malasngoding.com</div>
</body>
</html>
style.css
.kotak{
background: blue;
position: fixed;
left: 40px;
padding: 10px;
}
84