CSS Dış Boşluk (Margin) - Tüm Kenarlara Ayrı Margin Değeri Vermek

Konuya git Çalıştır
<!DOCTYPE html>
<html>
<head>
<style>
div {
    border: 1px solid black;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-right: 150px;
    margin-left: 80px;
    background-color: lightblue;
}
</style>
</head>
<body>

<h2>Ayrı ayrı marjin vermek</h2>

<div>Bu element yukarıdan 100px, alttan 100px, sağdan 150px, soldan 80px boşluk almıştır.</div>

</body>
</html>