![]() |
|
|||||||
| CSS Forum Cascading Style Sheets (CSS) and XHTML Forum |
|
|
![]() |
|
|
LinkBack (8) | Thread Tools | Display Modes |
|
|||
|
CSS shorthand is a great way to write a smaller, faster-loading CSS file. For example you can write
Code:
body{
background: url("bg.gif");
background-color: #fff;
background-repeat: repeat-x;
}
Code:
body {
background: url("bg.gif") #fff repeat-x;
}
CSS Shorthand Guide Efficient CSS with shorthand properties
____________________________
Infographic design, The Catalog of Unfindable Web Widgets, Color Psychology |
|
|
|
|||
|
Code:
element{
margin-top:10px;
margin-bottom:10px;
margin-left:5px;
margin-right:5px;
}
Code:
element{
margin:10px 5px 10px 5px;
}
Or as two values: Code:
element{
margin:10px 5px;
}
This can also be used for padding |
|
||||
|
yes.. very nifty talent to shorthand.
I find it useful for your own personal works, but that clients like it when I clearly lable and longhand ALL the element properties.
____________________________
Tommy Logic ™ Web Design :: Valid XHTML & CSS :: SEO :: CMS :: eCommerce Web Design Tutorials :: Computer Tutorials |
|
||||
Yeah.. we can't all live off our good looks I'm affraid...
____________________________
Tommy Logic ™ Web Design :: Valid XHTML & CSS :: SEO :: CMS :: eCommerce Web Design Tutorials :: Computer Tutorials |
|
||||
|
____________________________
"If at first you don't succeed, try again. Then quit. No use being a damn fool about it." Mike McKenzie - Online Portfolio |
![]() |
|
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| PSDTuts - Photoshop Tutorials and Links - Spoonfed Photoshop Tutorials | Graphic Design Links | Graphic Design Links | 0 | 09-12-2007 12:11 PM |
| Free video tutorials. Online video tutorials at GotMyIdea? | Graphic Design Links | Graphic Design Links | 0 | 03-12-2007 01:10 PM |
| Good-Tutorials / Photoshop Tutorials + Flash Tutorials | Graphic Design Links | Graphic Design Links | 0 | 03-12-2007 07:40 AM |
| Photoshop 7.0 Tutorials, Photoshop CS, Flash Mx Tutorials, Illustrator tutorials, Studio Max tutori | Graphic Design Links | Graphic Design Links | 0 | 15-11-2007 02:00 PM |
| Help request - Shorthand CSS | Australia Banners | CSS Forum | 4 | 09-08-2007 09:49 AM |