CSS caret-color, pointer-events และ tab-size เป็นคุณสมบัติที่ไม่ค่อยมีใครรู้จักสำหรับช่องใส่แบบฟอร์ม คุณสมบัติคาเร็ตสีช่วยให้เราระบุสีของคาเร็ตที่กะพริบในขณะที่ตัวชี้เหตุการณ์สามารถช่วยป้องกันไม่ให้ผู้ใช้ค้นหาองค์ประกอบ สุดท้าย ขนาดแท็บจะกำหนดจำนวนพื้นที่ว่างที่ใช้โดยแท็บ
ตัวอย่างต่อไปนี้แสดงให้เห็นถึงคุณสมบัติบางส่วนเหล่านี้
ตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
flex-direction: column;
background-color: mistyrose;
}
p {
white-space: pre;
}
p:last-of-type {
tab-size: 32;
-moz-tab-size: 32;
pointer-events: none;
}
</style>
</head>
<body>
<p> Ut sed felis lobortis, fermentum magna vitae, imperdiet lectus.</p>
<p> Ut sed felis lobortis, <a href=#>fermentum magna vitae</a>, imperdiet lectus.</p>
</body>
</html> ผลลัพธ์
สิ่งนี้จะทำให้เกิดผลลัพธ์ดังต่อไปนี้ -

ตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<style>
form {
padding: 2%;
margin: 3%;
background-color: cadetblue;
text-align: center;
}
form:focus-within {
box-shadow: 0 0 10px rgba(0,0,0,0.6);
}
input {
caret-color: navy;
font-size: 40px;
font-weight: large;
}
</style>
</head>
<body>
<form>
<select>
<option>.</option>
<option>..</option>
<option>...</option>
</select>
<input type="text" value="glee" />
</form>
</body>
</html> ผลลัพธ์
สิ่งนี้จะทำให้เกิดผลลัพธ์ดังต่อไปนี้ -
