Step 6
CSS Coding for Structure (FLOAT)
UNCOMMON CSS
flex:
Can be used to make columns of equal height, but often interferes with other standard CSS attributes.
Rounded Corners: (not approved by World Wide Web Consortium yet, but approved by browsers. So we have to use different code for the browsers)
Rounded Corners
Approach 1
- All corners the same
- border-radius: 10px; /* future proofing */
- moz-border-radius: 10px;
- webkit-border-radius: 10px;
Rounded Corners
Approach 2
- Corners different
- border-radius: 10px 20px 30px 0; /* future proofing */
- moz-border-radius: 10px 20px 30px 0;
- webkit-border-radius: 10px 20px 30px 0;
opacity:
Rare
position:
z-index:
outline: