- CSS - Scrollbars
- CSS - Dimension
- CSS - Outlines
- CSS - Cursors
- CSS - Padding
- CSS - Lists
- CSS - Margins
- CSS - Borders
- CSS - Tables
- CSS - Links
- CSS - Images
- CSS - Text
- CSS - Fonts
- CSS - Backgrounds
- CSS - Colors
- CSS - Measurement Units
- CSS - Inclusion
- CSS - Syntax
- CSS - Introduction
- CSS - Home
CSS Advanced
- CSS - Validations
- CSS - Layouts
- CSS - Printing
- CSS - Aural Media
- CSS - Paged Media
- CSS - Media Types
- CSS - Text Effects
- CSS - @ Rules
- CSS - Pseudo Elements
- CSS - Pseudo Classes
- CSS - Layers
- CSS - Positioning
- CSS - Visibility
CSS3 Tutorial
- CSS3 - Box Sizing
- CSS3 - User Interface
- CSS3 - Multi columns
- CSS3 - Animation
- CSS3 - 3d transform
- CSS3 - 2d transform
- CSS3 - Web font
- CSS3 - Text
- CSS3 - Shadow
- CSS3 - Gradients
- CSS3 - Color
- CSS3 - Multi Background
- CSS3 - Border Images
- CSS3 - Rounded Corner
- CSS3 - Tutorial
CSS Responsive
CSS References
- CSS - Animation
- CSS - Units
- CSS - Web safe fonts
- CSS - Web browser References
- CSS - Color References
- CSS - References
- CSS - Quick Guide
- CSS - Questions and Answers
CSS tools
CSS Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
CSS3 - User Interface
The user interface property allows you to change any element into one of several standard user interface elements.
Some of the common properties which are using in css3 User interface.
Sr.No. | Value & Description |
---|---|
1 | appearance Used to allow the user to make elements as user interface elements. |
2 | box-sizing Allows to users to fix elements on area in clear way. |
3 | icon Used to provide the icon on area. |
4 | resize Used to resize elements which are on area. |
5 | outpne-offset Used to draw the behind the outpne. |
6 | nav-down Used to move down when you have pressed on down arrow button in keypad. |
7 | nav-left Used to move left when you have pressed on left arrow button in keypad. |
8 | nav-right Used to move right when you have pressed on right arrow button in keypad. |
9 | nav-up Used to move up when you have pressed on up arrow button in keypad. |
Example of resize property
Resize property is having three common values as shown below −
horizontal
vertical
both
Using of both value in resize property in css3 user interface −
<html> <head> <style> span { border: 2px sopd; padding: 20px; width: 300px; resize: both; overflow: auto; } </style> </head> <body> <span>TutorialsPoint.com</span> </body> </html>
It will produce the following result −
CSS3 Outpne offset
Out pne means draw a pne around the element at outside of border.
<html> <head> <style> span { margin: 20px; padding: 10px; width: 300px; height: 100px; border: 5px sopd pink; outpne: 5px sopd green; outpne-offset: 15px; } </style> </head> <body> <span>TutorialsPoint</span> </body> </html>
It will produce the following result −
Advertisements