وبلاگ برنامه نویسی رایگان

برنامه نویسی ساده

وبلاگ برنامه نویسی

برنامه نویسی ساده

وبلاگ برنامه نویسی

برنامه نویسی ساده

شما میتوانید در این وبلاگ برنامه نویسی ساده یاد بگیرید.من در اینجا تمام تلاش خود را میکنم تا شما از من و وبلاگ من راضی باشد.

آخرین نظرات
نویسندگان

۱ مطلب با کلمه‌ی کلیدی «مارجین» ثبت شده است

۰۵
آبان
۹۴

<!DOCTYPE html>
<html>
<head>
<style>
p.x {
    background-color: yellow;
}

p.ex {
    background-color: yellow;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-right: 150px;
    margin-left: 50px;
}
</style>
</head>
<body>

<p>This is a paragraph with no specified margins.بدون مارجین</p>
<p class="ex">This is a paragraph with specified margins.مارجین دار</p>

</body>
</html>


نتیجه

This is a paragraph with no specified margins.بدون مارجین

This is a paragraph with specified margins.مارجین دار

  • آرین راستی