Để mở rộng giao diện người dùng, CSS đi kèm với các thuộc tính resize và outline-offset. Sau đây là ví dụ -
Ví dụ
<!DOCTYPE html>
<html>
<head>
<style>
div {
margin: 20px;
border: 1px solid rgb(0, 26, 255);
outline: 4px dashed rgb(90, 2, 86);
outline-offset: 15px;
}
textarea {
display: inline-block;
}
</style>
</head>
<body>
<h1>Extending user interface example</h1>
<h3>Resize property</h3>
<textarea style="resize: none;">Textarea : Not resizable</textarea>
<textarea>Textarea - Resizable (By default)</textarea>
<h3>Outline property</h3>
<div>Some text inside div</div>
</body>
</html> Đầu ra
Đoạn mã trên sẽ tạo ra kết quả sau -