CSS User InterfaceCSS provides many user interface features like resizing elements, outlines and box sizing. Following is a list of some common properties of CSS3 user interface:
Note:resize and outline-offset are the most important properties of the CSS user interface. Resize property can have 3 common values:
CSS3 Resize propertyThe CSS3 resize property specifies that whether an element should be resized by the user or not. Horizontal ResizeLet's take an example to resize the width of a <div> element. (Horizontal resize) See this example: Test it NowExample2: Vertical ResizeLet's take an example to resize the height of a <div> element. (Vertical resize) See this example: Test it NowBoth (horizontal & vertical) resizeYou can also resize the width and height of a <div> element. See this example: Test it NowCSS3 Outline OffsetThe outline-offset property is used to add space between an outline and border of an element. See this example: Test it NowSupporting Browsers
Next TopicCSS Pagination |