Site icon i2tutorials

CSS User Interface

CSS User Interface

 

CSS provides more user interfaces features like resizing elements, outlines, and box-sizing(box – border).

 

List of CSS3 user interface:

 

 

CSS3 Resize property:

 

Horizontal Resize:

 

<!DOCTYPE html>
<html>
<head>
<style>
div {
  border: 2px solid red;
  padding: 20px;
  width: 300px;
  resize: horizontal;
  overflow: auto;
}
</style>
</head>
<body>
<div>This example specifies how to resize the width of a div element.</div>
</body>
</html>

 

OUTPUT:

 

 

 

 

Exit mobile version