Computer >> Máy Tính >  >> Lập trình >> CSS

Thuộc tính viết tắt padding trong CSS


Thuộc tính padding trong CSS cho phép bạn đặt padding cho padding-top, padding-right, padding-bottom, padding-left. Nó là một thuộc tính viết tắt.

Đầu tiên chúng ta hãy xem một ví dụ -

Ví dụ: padding:10px 5px 7px 10px;

Đây,

top padding is 10px
right padding is 5px
bottom padding is 7px
left padding is 10px

Ví dụ

Các ví dụ sau minh họa thuộc tính CSS padding -

<!DOCTYPE html>
<html>
<head>
<style>
div {
   height: 150px;
   width: 300px;
   padding: 5% 10% 20% 5%;
   background-image: url("https://www.tutorialspoint.com/images/home_tensor_flow.png");
   text-align: center;
   font-weight: bold;
   font-size: 1.2em;
   box-sizing: border-box;
}
div > div {
   border-radius: 80px;
   padding: 2em 2em;
   box-shadow: 0 0 4px 0.8px black;
}
</style>
</head>
<body>
<div>Learn TensorFlow
<div>TensorFlow is an open source machine learning framework for all developers.</div>
</div>
</body>
</html>

Đầu ra

Điều này cho kết quả sau

Thuộc tính viết tắt padding trong CSS

Ví dụ

<!DOCTYPE html>
<html>
<head>
<style>
div {
   height: 150px;
   width: 100px;
   padding: 5% 1%;
   background-color: papayawhip;
   border-radius: 5%;
   box-sizing: border-box;
}
div > div {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   padding: 2em;
   box-shadow: 0 0 9px 1px black;
}
span {
   padding: 10px;
}
</style>
</head>
<body>
<div>
<div></div>
<span><i>button</i></span>
</div>
</body>
</html>

Đầu ra

Điều này cho kết quả sau -

Thuộc tính viết tắt padding trong CSS