Tagged: css RSS Toggle Comment Threads | Keyboard Shortcuts
-
tediscript
-
tediscript
-
tediscript
960gs Hack
http://net.tutsplus.com/tutorials/html-css-techniques/mastering-the-960-grid-system/
http://net.tutsplus.com/tutorials/html-css-techniques/prototyping-with-the-grid-960-css-framework/
http://www.webdesignerdepot.com/2010/03/fight-div-itis-and-class-itis-with-the-960-grid-system/
-
tediscript
Pengen belajar CSS #serius
Dah nyari silabusnya nemu dari tutplus :
* Part 1: Preparation
* Part 2: CSS Properties
* Part 3: Typography
* Part 4: Floats
* Part 5: Positioning
* Part 6: Semantics, List Items, and Menus
* Part 7: CSS Organizational Techniques
* Part 8: Rounded Corners, Box Shadows, and Text Shadows
* Part 9: CSS3 Gradients
* Part 10: Custom Fonts with @font-face
* Part 11: Taking Advantage of CSS Frameworks
* Part 12: Extending CSS with LESSReference :
Part 3:http://net.tutsplus.com/tutorials/html-css-techniques/typography-on-the-web/
Part 4, 12
http://net.tutsplus.com/tutorials/html-css-techniques/ask-nettuts-1-callbacks-less-and-floats/
Part 6, 9
-
tediscript
How to Centre a DIV Block Using CSS
This is actually show what my mistakes. At the firs I think I can use text-align : center but no. That aint gonna work.
just use it :
#tocenter {
width: 700px ;
margin-left: auto ;
margin-right: auto ;
}for this div item
The div you want to be centered.