Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
ONE Hours in CSS
Rating: 3.7 out of 5(26 ratings)
1,804 students

ONE Hours in CSS

css
Last updated 8/2021
English

What you'll learn

  • The will Learn CSS

Course content

2 sections9 lectures30m total length
  • Introduction0:40
  • CSS Example0:22
  • Type of CSS Styles0:01
  • How To create a file4:06
  • CSS Comments1:20

    CSS Comments

    Comments are used to explain the code, and may help when you edit the source code at a later date.

    Comments are ignored by browsers.

    A CSS comment is placed inside the <style> element, and starts with /* and ends with */:

  • CSS Colors10:16

    CSS Colors

    Colors are specified using predefined color names, or RGB, HEX, HSL, RGBA, HSLA values.

    RGB Value

    In CSS, a color can be specified as an RGB value, using this formula:

    rgb(red, green, blue)

    Each parameter (red, green, and blue) defines the intensity of the color between 0 and 255.

    HEX Value

    In CSS, a color can be specified using a hexadecimal value in the form:

    #rrggbb

    Where rr (red), gg (green) and bb (blue) are hexadecimal values between 00 and ff (same as decimal 0-255).


    HSL Value

    In CSS, a color can be specified using hue, saturation, and lightness (HSL) in the form:

    hsl(hue, saturation, lightness)

    Hue is a degree on the color wheel from 0 to 360. 0 is red, 120 is green, and 240 is blue.

    Saturation is a percentage value, 0% means a shade of gray, and 100% is the full color.

    Lightness is also a percentage, 0% is black, 50% is neither light or dark, 100% is white

    Yow can Experiment by mixing the HSL values.

  • css font4:56
  • CSS Padding8:24

    CSS Padding:

    The CSS padding properties are used to generate space around an element's content, inside of any defined borders.

    With CSS, you have full control over the padding. There are properties for setting the padding for each side of an element (top, right, bottom, and left).


    CSS has properties for specifying the padding for each side of an element:

    • padding-top

    • padding-right

    • padding-bottom

    • padding-left

    Example:

    Set different padding for all four sides of a <div> element:

    div {
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 80px;
    }

Requirements

  • You a Mac or Window computer or a laptop

Description

Welcome to ONE Hours in CSS for beginner to pro and CSS stand for Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML or XML (including XML dialects such as SVG, MathML or XHTML). CSS describes how elements should be rendered on screen, on paper, in speech, or on other media, CSS is also designed to enable the separation of presentation and content, including layout, colors, and fonts and CSS is among the core languages of the open web and is standardized across Web browsers and The name cascading comes from the specified priority scheme to determine which style rule applies if more than one rule matches a particular element. This cascading priority scheme is predictable and Why Learn CSS? Without CSS, every web page would be drab plain text and images that flowed straight down the page. With CSS, you can add color and background images and change the layout of your page, your web pages can feel like works of art and in this course, we will talk about some of the main CSs concept step by step practically so if you have ever wanted to learn CSS, then this course is for you and by the end of this course, student will have a better understanding about what CSS is  and it's not. You will learn many aspects of styling web pages! You’ll be able to set up the correct file structure, edit text and colors, and create attractive layouts. With these skills, you’ll be able to customize the appearance of your web pages to suit your every need! so Hit the enroll button to get started with the CSS course. 

Who this course is for:

  • Beginner Level