CSS calc()ฟังก์ชั่น
ตัวอย่าง
ใช้ calc() เพื่อคำนวณความกว้างของ <div> องค์ประกอบ:
#div1 {
position: absolute;
left: 50px;
width: calc(100% - 100px);
border: 1px solid black;
background-color: yellow;
padding: 5px;
text-align: center;
}
ความหมายและการใช้งาน
ฟังก์ชัน calc() ทำการคำนวณเพื่อใช้เป็นค่าคุณสมบัติ
รุ่น: | CSS3 |
---|
รองรับเบราว์เซอร์
ตัวเลขในตารางระบุเบราว์เซอร์รุ่นแรกที่รองรับฟังก์ชันนี้อย่างเต็มที่
ตัวเลขตามด้วย -webkit-, -moz- หรือ -o- ระบุเวอร์ชันแรกที่ทำงานกับคำนำหน้า
Function | |||||
---|---|---|---|---|---|
calc() | 26.0 19.0 -webkit- |
9.0 | 16.0 4.0 -moz- |
7.0 6.0 -webkit- |
15.0 |
ไวยากรณ์ CSS
calc(expression)
Value | Description |
---|---|
expression | Required. A mathematical expression. The result will be used as the value. The following operators can be used: + - * / |