css基础

1. 什么是css?

  CSS (Cascading Style Sheets) 用于渲染HTML元素标签的样式。中文:层叠样式表。

2. css怎样使用?

  css可以通过以下方式添加到html中:

  1. 内联样式---在html元素中是用“style”属性。
  2. 内部样式表---在html文档头部 <head> 区域使用<style> 元素 来包含CSS
  3. 外部引用---使用外部css文件

  当特殊的样式需要应用到个别元素时,就可以使用内联样式。使用内联样式的方法是在相关的标签中使用样式属性。样式属性可以包含任何 CSS 属性。

    <p style="color:blue;margin-left:20px;">This is a paragraph.</p>

 

  当单个文件需要特别样式时,就可以使用内部样式表。你可以在<head> 部分通过 <style>标签定义内部样式表

    <head>
    <style type="text/css">
      body {background-color:yellow;}
      p {color:blue;}
    </style>
    </head>

 

  当样式需要被应用到很多页面的时候,外部样式表将是理想的选择。使用外部样式表,你就可以通过更改一个文件来改变整个站点的外观。

  <head>
    <link rel="stylesheet" type="text/css" href="mystyle.css">
  </head>

3. css的样式属性?

  a. 背景颜色(background-color)

    <body style="background-color:yellow;">

      <h2 style="background-color:read;">这是一个标题</h2>

      <p style="background-color:green">这是一个段落。</p>

    </body>

 

  b. 字体、字体颜色、字体大小

    font-family, color, font-size

    <h1 style="font-family:verdana;">一个标题</h1>

    <p style="font-family:arial;color:red;font-size:20px;">一个段落。</p> 

  c. 文本对齐方式

    text-align 指定文本的水平和垂直方向的对齐方式。

    <h1 style="text-align:center;">居中对齐的标题</h1>

    <p>这是一个段落。</p>

 

posted @ 2017-01-26 10:18  suonikeyinsu  Views(320)  Comments(0Edit  收藏  举报