Judul : Frame Element - Margin CSS. Tujuan : Mempelajari cara mengatur margin atau pembatas pada tampilan html menggunakan CSS. Target : Dapat memahami struktur dari pemrograman CSS.
Setelah mempelajari Background CSS pada sesi sebelumnya, sekarang kita akan mempelajari mengenai Frame Element pada CSS. Frame Element ini di bagi menjadi 3 bagian yaitu margin, padding, dan border. Materi akan di bahas per sesi pada setiap materi mulai dari Margin CSS dan akan dilanjutkan dengan pembahasan Padding CSS.
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#biru {
height: 300px;
width: 300px;
background: blue;
margin:10px;
}
#merah {
height: 300px;
width: 300px;
background: red;
}
</style>
<title>Margin</title>
</head>
<body>
<div id="biru">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>
<div id="merah">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>
</body>
</html>
EmoticonEmoticon