Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
div {
border: 1px solid #8ebf42;
background-color: #eee;
padding: 10px;
width: 300px;
height: 200px;
resize: horizontal;
overflow: auto;
}
</style>
</head>
<body>
<h2>Пример свойства resize</h2>
<div>
<p>Lorem Ipsum - это текст-"рыба", часто используемый в печати и вэб-дизайне.</p>
<p>Lorem Ipsum - это текст-"рыба", часто используемый в печати и вэб-дизайне.</p>
</div>
</body>
</html>