DEV Community

Cover image for What is CSS?
elinabey
elinabey

Posted on

What is CSS?

Start learning CSS now. Learn CSS Tutorial online or CSS3 gives the basics to the advanced idea of CSS technology. Our CSS tutorial is designed for both beginners and professionals. CSS was developed by Hรฅkon Wium Lie in the year 1994. Cascading Style sheets Passionately introduced to CSS. It is an easy developed language considered to simplify the action of making web pages presentable. CSS allows you to apply a style to HTML elements on web pages. In addition, CSS enables you to do this free of the HTML makes up each web page.

  1. CSS stands for Cascading Style Sheet.
  2. CSS is used to style HTML elements.
  3. It is a generally used language on web pages.
  4. CSS ,HTML and JavaScript are generally used for web developing. It provides web designers to apply style on HTML elements.

CSS Example:

<!DOCTYPE>  
<html>  
<head>  
<style>  
h1{  
color:white;  
background-color:green;  
padding:5px;  
}  
p{  
color:blue;  
}  
</style>  
</head>  
<body>  
<h1>This is the Heading "Dev.to"</h1>  
<p>This is Paragraph.</p>  
</body>  
</html>  
Enter fullscreen mode Exit fullscreen mode

Why to Learn CSS?

Cascading Style Sheets, fondly referred to as CSS, is a simple design language intended to simplify the process of making web pages presentable.

CSS is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Web Development Domain. I will list down some of the key advantages of learning CSS:

Create Stunning Web site - CSS handles the look and feel part of a web page. Using CSS, you can control the color of the text, the style of fonts, the spacing between paragraphs, how columns are sized and laid out, what background images or colors are used, layout designs, variations in display for different devices and screen sizes as well as a variety of other effects.

Become a web designer - If you want to start a carrier as a professional web designer, HTML and CSS designing is a must skill.

Control web - CSS is easy to learn and understand but it provides powerful control over the presentation of an HTML document. Most commonly, CSS is combined with the markup languages HTML or XHTML.
Originally posted: CSS Tutorial

Latest comments (0)