Браузер |
![]() |
![]() |
![]() |
![]() |
![]() |
|||||||||||||||
Версия |
6.0 |
7.0 |
8.0 |
9.0 |
2.0 |
3.0 |
4.0 |
5.0 |
9.2 |
9.6 |
10 |
2.0 |
3.1 |
4.0 |
5.0 |
2.0 |
3.0 |
3.6 |
4.0 |
|
Поддержка |
CSS | CSS2+ |
Значение по умолчанию | auto |
Наследуется | Нет |
Применяется | К блочным элементам |
Ссылка на спецификацию | открыть в новой вкладке |
clip: rect(Y1, X1, Y2, X2) | auto | inherit
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>clip</title>
<style type="text/css">
#layer {
position: absolute; /*Абсолютное позиционирование*/
clip: rect(40px, auto, auto, 40px); /*Прячем часть текста*/
width: 200px; /*Ширина блока*/
color: white; /*Цвет текста*/
background: #7f4c3e; /*Цвет фона*/
border: 1px solid black;/*Параметры рамки*/
padding: 10px; /*Поля вокруг текста*/
}
</style>
</head>
<body>
<div id="layer1">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diem
nonummy nibh euismod tincidunt ut lacreet dolore magna aliguam erat volutpat.
Ut wisis enim ad minim veniam, quis nostrud exerci tution ullamcorper suscipit
lobortis nisl ut aliquip ex ea commodo consequat.</p>
</div>
</body>
</html>