How laying CSS

In general there are 3 ways to laying CSS code into the HTML that is:

  • First: Inline stylesheet that is laying or property directly into the HTML tag that is between <body> ... ... </ body>. example:
    <body>
    <p style="color:#ff0000"> Learning CSS </ p>
    </ body>


  • Second: Internal stylesheet element that is laying between CSS STYLE tag in the HEAD tag.
    example:
    <head>
    <style type="text/css">
    p (color: # ff0000;)
    </ style>
    </ head>
  • Third: External stylesheet meletakannya that is outside the special HTML file, that is the way to save the file extensi. Css
    example: make the code as below and save the file with the name style.css
    p (color: # ff0000; font-size: 18px;)


If you want to display all the information that is in the style.css file into HTML, you must call the file with a type name to link to the LINK tag in the HEAD tag.
example:
<head>
<link href="style.css" type="text/css" rel="stylesheet"/>
</ head>
Among the three ways described above, in general, Web Depelover more ways to use 3 because the file management easier.
Well, think about as it is and understanding how to create CSS (the author). But for those who like a smart and experienced about CSS, it may have another, I also do not know lho ... (the author is still learning as well) because the language may be different but means the same aja kok.
You Agree?

Read More..

Understanding of CSS

CSS stands for Cascading Style Sheet.
CSS is a style specific to format HTML pages to be more interesting that can not be done by the HTML tags only.
CSS is in the standardization by W3C, so it can run well on all browsers.


CSS Advantages:

1. With CSS, you will be able to shorten the time you work to create a Web page.
2. HTML file size will be smaller, because the CSS file is located outside of HTML (if using external stylesheet).

The weakness of the CSS
Not all browsers interpret CSS code in the same way. So sometimes, the web with CSS looks good in one browser, but disordered in the other browser. So you have to check the view that all visible in both the browser and add code-browser-specific code if a specific need to view your web looks good in all browsers.

Read More..

Introduction about CSS

For those of you who want to study the Web as a Web Designer, the CSS is a must.
Without CSS, Web Designer will be a difficulty in designing a web page, let alone the number of pages that are made to reach 10 pages or more.

Imagine how much time you will need to create a background color the same on every web page?. But if you study the CSS, it is very short time needed to make the background color the same in every web page you. Simply Edit to only one file will result in changes in all the web pages.
This is a time investment for you if you are able to master CSS well.

Before you want to learn more about CSS, it is recommended that you learn HTML / XHTML first so you understand what I submit further, because you will find a lot of code in the HTML code to learn CSS.

Happy Testing ... so ....!

Read More..