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;
}

How to Create Rounded Corners website with CSS3 border Radius with answer

Adding rounded corners in CSS2 was tricky. We had to use different images for each corner.
In CSS3, creating rounded corners is easy.
In CSS3, the border-radius property is used to create rounded corners:

div
{
border:2px solid;
border-radius:25px;
}


How to use 'view port meta tags in responsive web design' with answer.

Technology innovations are developing very fast. Today's latest trend become tomorrow's old trend. Day-by-day we have to update with the technology. Website design is a category which has to learn and implement new things every time. Web designers must and should keep
learn and keep update with the new changes which will make them the best in website design industry with their competitors and rivals.
Coming to our present topic Usage of 'view-port', it must in responsive web designing process. Without View port it is not called as responsive website or mobile friendly website.
The syntax will be like this:
meta name equal to view port within html code style.
How to use view port meta tag?
We have to use view port attribute in meta tags only. It should be within head tag only. After the title or before the title, doesn't matter. It is a non closing tag. You have no need use one more tag to close it. Simply one tag is enough.
What is device within meta tag?
Device with is a property we use to define the web page to fix in with the device. When you will fix the fix to 320 pixels it should be
fixed to that width only. If you take 500 pixels it will adhere to that only. But we should not fix the width while designing a
responsive website. If you are designing a mobile app then, you can fix the width. But here we are designing a responsive website which
will changes it's width automatically according to the device width. The devices are means desktop screen, smart phone, tablet etc.,
comes under this.
What is initial scale in meta tags? Initial Scale is a property to limit the user from zooming our website. If we don't want to allow
the user to zoom the website, we can give zero as initial value, then you cannot be able to zoom our website. Why we have not to allow user to zoom our website, means we are designing a responsive website, automatically it will adjust according to screen, then why to
zoom? And as per responsive designing process, we have to design user friendly website. For that we are putting initial value as zero.
You can give initials values one or two or whatever you want. If you will give 1, then user can zoom 10% of the website. But it is not
user-friendly. While we are designing only, we have to design our webpage width as 100%, then there is no need of zoom.
Here one more important point we should remember is 'to use media queries'. You should fix the widths such as 320, 360, 560, 800, 1000
plus, these are the mostly used values in responsive website design. I will explain details in next article.
Thank you.

Thursday 19 December 2013