You are here: Home > Uncategorized > Solving Problems With CSS Tutorials Is Simple

Solving Problems With CSS Tutorials Is Simple

Yes, I know, CSS is yet another thing to get trained when it comes to writing webpages. However, its one of the most useful things to learn if you’d like to keep your websites looking sharp, as well as glitch-free.

Why is that, you ask? Well it’s simple. CSS, that stands for Cascading Style Sheets, is what has ironed out the kinks in the HTML formats 3.2 and beyond. Yes, the kinks. Particularly all those problems which involved tags, color and fonts. Hence, I’m writing this CSS tutorial for you.
Learning to deal with CSS was not difficult for me, once I understood that it actually worked within the HTML structure, to fix those glitches. Honestly, it’s as simple as writing HTML, or ASP.

Taking the time to understand exactly what you’re doing and even what you are putting where is what I’m here to help you do. CSS language or syntax is actually very, very simple, but a CSS tutorial is definitely a plus for you.

I’ll decide which color to make a header by using something known as a selector. The coding style is a little different, but easy to remember, once it is been practiced a few times. Here are a couple of examples of what I mean.

p1 color: mauve; font-size 18 px;
h1 color:indigo; font-size 14 px;

Note that the brackets are curly, and even that the declarations (color:mauve or font-size14 px for example) have a value property, that’s the first part and a value, which happens to be the second part of the declaration. Include a semi-colon at the end of each declaration.

You want to change the property in each declaration. So, if it is color which is changing, type color. Font-size, or background-color, this is where you will do the change at for the specific need.

While I discovered that changing the pages on my websites was really going to be this easy, I literally jumped for joy. Please remember, there are many other things that must included too.

I should mention, if I’ve not by now, you might just put one declaration on each line, and even you might just add comments too, and the browsers would ignore the comments. Adding comments would look like:
/*this is a comment*/
H

color:indigo; font-size 22 px;
/*this is a 2d comment*/
text-align:center; center;

Finding your way with a CSS tutorial and succeed!

To know more about asp tutorial, learn css, asp.net tutorial, jquery tutorial logon to http://www.sitepoint.com.

Tags: , , ,

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Comments are closed.