Saturday, May 24, 2014

HTML TUTORIAL PART 72

HTML TUTORIAL PART 72

PROBLEM:
LOOK AT THE FOLLOWING:

Note: Internet Explorer and Opera do not support the resize property.
The resize property specifies whether or not an element is resizable by the user.


SOLVED:
THE CODE BELOW MADE THE HTML TIP:

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
border:2px solid;
padding:10px 40px; 
width:300px;
resize:both;
overflow:auto;
}
</style>
</head>
<body>

<p><b>Note:</b> Internet Explorer and Opera do not support the resize property.</p>

<div>The resize property specifies whether or not an element is resizable by the user.</div>

</body>
</html>

No comments:

Post a Comment