CSS學習筆記——簡述

CSS3學習的教程來自後盾網css

 

div+css網頁標準佈局html

1>div佈局

  i>DIV全稱是division,意爲「區塊、分割」,DIV標籤是一個無心義的容器標籤,用於將頁面劃分出不一樣的區域學習

  ii>經過DIV將複雜的頁面進行細分塊,能夠將問題細分一個一個解決,因此經過DIV將頁面分塊是一個關鍵的工做,也是決定最終效果與質量的前提。網站

2>cssui

  i>CSS (Cascading Style Sheet),中文翻譯爲層疊樣式表,是用於控制網頁樣式並容許將樣式信息與網頁內容分離的一種標記性語言。spa

3>div承載的是內容,而css承載的是樣式翻譯

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords"content=""/>
<meta name="description" content="本篇網頁的概述,一段話,對網站的進一步描述"/>
<meta name="author"  content="網頁做者的資料">
<meta name="robots" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>無標題文檔</title>
<style>
/*
     body{
      color:blue;
     }
     div{
       font-size:15px;background:red;
     }
     */
</style>
</head>

<body>
<div>
  我是div
</div>
</body>
</html>
相關文章
相關標籤/搜索