1、<iframe></iframe>的用法css
<iframe src="http://baidu.com"></iframe> 內嵌網頁,在一個網頁中添加一個網頁佈局
能夠在括號裏面添加 width height scrolling="no"(是否有滾動條) framborder="0"(是否有邊框)post
<frameset></frameset> 能夠代替<body>,徹底被另外一個網頁代替,相似於一個表格spa
<frame/> 一個frame就是一個單元格blog
能夠在<frameset>括號裏面添加各類用法:get
rows="100,200,*" 表示設置3行,每行高度100,200,無限大iframe
cols="200.*" 設置兩列it
frameborder 邊框io
在設置完行和列後,後面直接加frame網址,顯示順序爲第一行第一列→第一行第二列→第二行第一列→第二行第二列……ast
<frame src="http://baidu.com"/>
<frame src="http://sina.com"/>
<…………………………>
<…………………>
scrolling="no" noresize="noresize"(不能調整大小) 能夠加入到<frame>中
2、<style></style>的用法
<style type="text/css"> <!--style放在head下使用--> body{ } <!--括號包起來-->
p <!--P表示控制<p>標籤的內容--> { font:Verdana, Geneva, sans-serif }
.name{ font:"Courier New", Courier, monospace } <!-- 「.」+ 本身命名的名字,設置樣式,而後在 「</style」後面須要引用的時候,加class選擇,好比 在<p>引用 設置的.name屬性:<p class="name"> </p> -->
#p1{ font-size:12px; color:#06C } <!--經過#開頭,加自定義的一個 ID ,設置樣式,而後在style外,引用時,加ID=,例如:<p id="p1"> </p> -
#p2,.name1{ font:Tahoma, Geneva, sans-serif } <!-- p2,和name1經過逗號隔開,表示他們的樣式設置,都爲括號裏面的內容 -->
#p2 name1{ font:Verdana, Geneva, sans-serif } <!--p2和name1經過空格鏈接,表示對id=p2的裏面,class=name1的設置,兩個要同時知足
</style>
<!-- 以上的寫的樣式,能夠寫在css格式的文件中,而後在head中加入<link rel="stylesheet" type="text/css" href="css.css" /> --> 用法 :<link rel="stylesheet" type="text/css" href="css.css" />
3、body style的用法:
<body style="font-size:36px"> <!--styel能夠放在body之間任何一個標籤位置作爲屬性使用--> <!--style是一個特殊的標籤的屬性,集齊了許多控制樣式的屬性-->
幾種經常使用的body style:
background-repeat:r佈局設置 background-position:top 起點位置設置,頂點 background-attachment:fixed 背景不動,內容滾動 background-color 顏色 background-size 尺寸
(若外部樣式表已經設置過,優先執行body裏的設置) </body>
marquee:滾動信息 <marquee direction="left" bgcolor="#666666" behavior="alternate" style="marquee-speed:fast>這裏爲顯示的內容</marquee>
<!--direction:滾動的方向,bgcolor:背景顏色,behavior:滾動的方式,能夠經過style的方式來設定-->