Skip to content

Yelpshop's SEO Way – Earn Money

Jessica SEO Learning and Trying to Earn Money

Archive

Category: CSS3

I checked some sites in this article about study css3 tips and tutorials from 10 top sites.
About the first one it’s a wordpress. I love the theme I am sure you can figure why it’s PR5. Study the tutorials from it and improve your wordpress blog. I will make my own WordPress Theme later.(of course I will show you.)

Hello and welcome. We know we can do amazing things using CSS3. Helps create some design elements or whole page style. So there you have top 10 sites where you can find css3 tips , tricks and tutorials.

this article collected different articles from different places to show you tips of css3.

You still can learn some other things from these web, dig them!

#1 http://www.w3avenue.com/

top 10 sites for css3 tips, tricks and  tutorials

#2 http://www.design-dc.co.uk/

top 10 sites for css3 tips, tricks and  tutorials

#3 http://www.smashingmagazine.com/

top 10 sites for css3 tips, tricks and  tutorials

#4 http://css3please.com/

top 10 sites for css3 tips, tricks and  tutorials

#5 http://www.css3.info/

top 10 sites for css3 tips, tricks and  tutorials

#6 http://css-tricks.com/

top 10 sites for css3 tips, tricks and  tutorials

#7 http://wordcastnet.com/

top 10 sites for css3 tips, tricks and  tutorials

#8 http://psdcollector.blogspot.com/

top 10 sites for css3 tips, tricks and  tutorials

#9 http://www.ectomachine.com/

top 10 sites for css3 tips, tricks and  tutorials

#10 http://sixrevisions.com/

top 10 sites for css3 tips, tricks and  tutorials

reference :http://www.clickonpost.com/top-10-sites-for-css3-tips-tricks-and-tutorials/

Post to Twitter

I want to know how css3 works, so I googled “Css3 study”.
I thought that CSS3 first feature is Rounded Corners based on the search results.
There are still more features waiting to study.

Our first example, is a basic rounded content box:

1 #rounded_box {
2 padding: 2px;
3 background: #7AA4CE;
4 border-radius: 5px;
5 -moz-border-radius: 5px;
6 -webkit-border-radius: 5px;
7 }

You can preview the final outcome HERE.

Our second example uses selective rounded corners to create an alternative effect:

01 #rounded_box {
02 padding: 2px;
03 background: #7AA4CE;
04 border-radius-top-left: 5px;
05 -moz-border-radius-topleft: 5px;
06 -webkit-border-top-left-radius: 5px;
07 border-radius-bottom-right: 5px;
08 -moz-border-radius-bottomright: 5px;
09 -webkit-border-bottom-right-radius: 5px;
10 }

You can preview the final outcome HERE.

Finally, a completely different approach to using this great feature:

01 #rounded_box {
02 padding: 2px;
03 background: #7AA4CE;
04 border-radius-top-left: 20px;
05 -moz-border-radius-topleft: 20px;
06 -webkit-border-top-left-radius: 20px;
07 border-radius-bottom-right: 20px;
08 -moz-border-radius-bottomright: 20px;
09 -webkit-border-bottom-right-radius: 20px;
10
11 border-radius-top-right: 5px;
12 -moz-border-radius-topright: 5px;
13 -webkit-border-top-right-radius: 5px;
14 border-radius-bottom-left: 5px;
15 -moz-border-radius-bottomleft: 5px;
16 -webkit-border-bottom-left-radius: 5px;
17 }

Comments:
1. Mehdi
Posted May 19, 2010 at 8:04am | Permalink

Funny, but NONE of the examples on your website work with IE 7.

2. Rick
Posted May 20, 2010 at 8:29am | Permalink

@Mehdi – All tested and working on IE8. I suggest you take it up with Microsoft, who opted not to support basicweb standards. If the feature isn’t supported, how does that become our fault?

3. Dime Design
Posted May 11, 2010 at 12:42am | Permalink

I just recently started using these rounded corners in my designs, and it has been working out great. It’s much easier than using images and setting it as the background image and doing all that work. This is a much simpler way to get the same effect, and makes the page load a bit faster.

Awesome tutorial, thanks for sharing!

Post to Twitter

Share this blog

Bookmark and Share