Showing posts with label css3. Show all posts
Showing posts with label css3. Show all posts

Monday, 23 December 2013

How to Learn the Basics of CSS3 | CSS3 Basics | CSS3 Fundamentals | CSS3 Latest Articles | CSS advanced tips and tricks



1. The first websites used HTML exclusively. The methodical construction of websites favored programmers instead of graphic designers. Cascading Style Sheets (CSS) changed this. With them, designers control fonts, colors, spacing and layouts without memorizing codes. Instead of recoding an entire website, designers change the values in the style sheet. CSS3 is the latest version of CSS. Unlike earlier versions, it is now modular. CSS3 adds drops shadows, rounded corners, gradients and improved borders. There are several resources for learning CSS3 basics. Have a question? Get an answer from Online Tech Support now!


Read Jason Beaird's "The Principles of Beautiful Web Design, 2nd Edition." Focusing on the creative side of Web design, the book helps a beginner develop an eye for what makes a good-looking site. Follow up with Andy Harris' "HTML, XHTML & CSS All-in-One for Dummies." It introduces CSS3 and explains how it differs from standard HTML and XHTML. This is your primary reference guide until you have exhausted online tutorials.

2 Begin your online education with W3C's free CSS tutorials. Begin with a brief review in the "Starting with HTML + CSS" tutorial and then explore the more than 40 tutorials. Review JavaScript programming techniques. W3 Schools and Lynda also provide excellent CSS3 tutorials. The W3 Schools free tutorials are informative, but the ads can be distracting. Pricing for Lynda's online tutorials begin at $25 monthly at time of publication.

3 Visit Code School and take its course: "Functional HTML5 & CSS3" ($45 at time of publication). It is a five-level course with coding challenges for each level. You watch video segments and then write CSS3 code in a window. A second window displays your coding as a Web page. You must submit each challenge before being able to view the next video segment.

4 Continue your online education with the "Introduction to W3C Mobile Web and Application Best Practices." This builds upon information learned from the Lynda tutorial series. You are expanding your CSS3 skills into developing websites exclusively for mobile devices.
5 Read Peter Gasston's "The Book of CSS3: A Developer's Guide to the Future of Web Design." It will serve as a reference manual providing several ways to perform a task and considers possibilities for CSS3 in the future. Theories presented here will most likely be discussed at the World Wide Web 2012 Conference in Lyons, France. If attending this one is not an option, check your local colleges for conferences.


Sunday, 22 December 2013

Responsive web design tips: CSS3 Box shadow usage techniques

Box shadow is a very important tag in responsive design. with this tag we can apply a beautiful shadow to a box in website.

the code will be like this:

.democlass { box-shadow: 0px 1px 2px #cccccc; }

Then you can get a beautiful style. try with your custome colors.

How to use Display data cell in CSS3?

Friends, recently i came across a new CSS3 property called 'data-cell'.

We have to use this css3 property data cell, when we have a background image before the text.

If we will have some other image beside a title. Then we have to apply data cell to the title.

the format will be like this:

.myClass { display: data-cell; vertical-align: middle;}

Then the the will be aligned with the image.

Really this a fantastic property.

Try it once.

Friday, 20 December 2013

How give Shadow in website design using CSS3 Shadow property ?

In CSS3, the box-shadow property is used to add shadow to boxes:

div
{
box-shadow: 10px 10px 5px #888888;
}