Good Morning Little Schoolgirl

Szájharmonika tab (D harmonikán próbáltam):

-34, -34, 34, -34, -3b, -2, x2
-3b, -3b, 3, -3b, -5, 45 x2
-4, -4, -5, -4, -3b, -2 x2
-3, -3
-3b, -4, 4, -4, -4b, 3, -3b, -3b, 3, 3,
-5, -5, -5, -4b, 4, -3b, 34, -34, 3,
-5, -5, -5, -4b, 4, -3b, -3, -3

Its NOT 100% but its the best i can do!

CSS info

Zoe Mickley Gillenwater: Rugalmas webtervek könyv CSS példáinak forráskódja

Reklámok beágyazása a cikkek közé, úgy, hogy a képernyő átméretezés után is a cikkek között maradjanak. : http://css-tricks.com/content-folding/

Hack:
http://css-tricks.com/132-how-to-create-an-ie-only-stylesheet/

Square grid: http://thesquaregrid.com/

Scalable and Modular Architecture for CSS

Centering in the Unknown

Cross-Browser CSS Development Workflow

 CSS layouts

11 Best CSS Frameworks For Making Your Website Stylish

CSS Arrow

CSS font stack

CSS refresh

When you’re coding a website, nothing can be more frustrating than having to switch from the texteditor to the browser over and over again, just for small changes to occur. With CSSrefresh installed, all the included stylesheets are automatically refreshed directly after you save them.

forrás: http://www.impressivewebs.com/css-html-tools-resources/

CSS3 Rounded corner generator: http://www.cssportal.com/css3-rounded-corner/

Styling the input text field: http://www.tdl.com/~jrb/jrb7/css_textfield0.html

Buttons: 20 CSS3 Tutorials and Techniques for Creating Buttons

How To: Create a Simple CSS Compressor using PHP

Visualising CSS selector matches

Learn CSS Layout: http://learnlayout.com/

Zoe Mickley Gillenwater: Rugalmas webtervek könyv CSS példáinak forráskódja

Reklámok beágyazása a cikkek közé, úgy, hogy a képernyő átméretezés után is a cikkek között maradjanak. : http://css-tricks.com/content-folding/

Hack:
http://css-tricks.com/132-how-to-create-an-ie-only-stylesheet/

Square grid: http://thesquaregrid.com/

Scalable and Modular Architecture for CSS

Centering in the Unknown

Cross-Browser CSS Development Workflow

 CSS layouts

11 Best CSS Frameworks For Making Your Website Stylish

CSS Arrow

CSS font stack

CSS refresh

When you’re coding a website, nothing can be more frustrating than having to switch from the texteditor to the browser over and over again, just for small changes to occur. With CSSrefresh installed, all the included stylesheets are automatically refreshed directly after you save them.

forrás: http://www.impressivewebs.com/css-html-tools-resources/

CSS3 Rounded corner generator: http://www.cssportal.com/css3-rounded-corner/

Styling the input text field: http://www.tdl.com/~jrb/jrb7/css_textfield0.html

Buttons: 20 CSS3 Tutorials and Techniques for Creating Buttons

How To: Create a Simple CSS Compressor using PHP

CSS táblázat

A display: table; display: table-row; display: table-cell; alkalmazása:

<div id="container"> 
<div id="row"> 
<div id="left"> <h4>Left Col</h4> </div> 
<div id="middle"> <h4>Middle Col</h4> 
 </div> <div id="right"> <h4>Right Col</h4> </div> 
</div> 
</div> 
#container { display: table; } 
#row { display: table-row; } 
#left, #right, #middle { display: table-cell; } 

 

 

http://snook.ca/archives/html_and_css/getting_your_di