چرا دورآموز؟
در دورآموز می توانید هزینه جلسات را به صورت اقساطی پرداخت نمایید
نمونه دو سراحی ساده برای هدر فوتر و دیو در سی اس اس
چهارشنبه، 17 آبان 1402
193
میخواهیم دو صفحه در html را با css حاشیه بندی کنیم.کد برای استایل مورد نظر
header{
height: 100px;
width: auto;
margin: 0% 10% 0% 10% ;
background-color: aqua;
}
div{
height: 800px;
width: 80%;
margin: 0% 10% 0% 10%;
background-color: burlywood;
}
footer{
height: 100px;
width: 80%;
margin: 0% 10% 0% 10% ;
background-color: red;
}
نمونه شماره دوم
کد برای نمونه بالا در css
#hello{
height: 50px;
width: auto;
margin: 0% 10%;
background-color: aquamarine;
}
header{
height: 100px;
width: auto;
margin: 0% 0% 0% 0% ;
background-color: aqua;
}
div{
height: 800px;
width: 80%;
margin: 0% 10% 0% 10%;
background-color: burlywood;
}
footer{
height: 100px;
width: auto;
margin: 0% 0% 0% 0% ;
background-color: red;
}