clip

書式 clip:rect(上 右 下 左)
対象ブロックレベル要素、置換要素
継承しない
初期値 auto
解説
表示する範囲を指定します(クリッピング)。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
div { position:absolute;border:1px black solid;
background-color:gray;
left:10px;
top:10px;
width:300px;
height:100px;
clip:rect(0 200 90 0);
}
--></style>
</head>
<body>
<img src="Default.png">
<div>Dashboard Sample Text</div>
</body>
</html>
実際のサンプルをダウンロード