溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

H5+css從入門到精通

發(fā)布時(shí)間:2020-06-21 10:58:25 來源:網(wǎng)絡(luò) 閱讀:1420 作者:sjfbjs 欄目:開發(fā)技術(shù)
當(dāng)然css代碼很多,不可能這么快就精通的,我們只能慢慢來
css層疊樣式表是嵌套在html代碼內(nèi)部的

一般格式都是<style> type="text/css"
                          #siderRight {
                             float:left;
                             width:200px;
                             height=300px;
                        }


                        </style>


這里有個(gè)老舊html  css代碼的對比

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
#header,#siderLeft,#siderRight,#footer{
	border:solid 1px #666;
	padding:10px;
	margin:6px;
}
#header {width:500px}
#siderLeft{
	float:left;
	width:60px;
	height:100px;
}
#siderRight{
	float:left;
	width:406px;
	height:100px
}
#footer{
	clear:both;
	width:500px;
}
</style>
</head>
<body>
<div id="header">導(dǎo)航</div>
<div id="siderLeft">菜單</div>
<div id="siderRight">內(nèi)容</div>
<div id="footer">底部說明</div>
</body>
</html>

這里是新的html  css代碼

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
header,nav,article,footer{
	border:solid 1px #666;
	padding:10px;
	margin:6px;
}
header {width:500px}
nav{
	float:left;
	width:60px;
	height:100px;
}
article{
	float:left;
	width:406px;
	height:100px
}
footer{
	clear:both;
	width:500px;
}
</style>
</head>
<body>
<header>導(dǎo)航</header>
<nav>菜單</nav>
<article>內(nèi)容</article>
<footer>底部說明</footer>
</body>
</html>

這里我們來發(fā)現(xiàn)一個(gè)超鏈接引用css文件的方式和h6里面引用css里面定義的類的一般格式

  <!-- Custom styles for this template -->
    <link href="/css/dashboard.css" rel="stylesheet">
  </head>

  <body>
    <nav class="navbar navbar-fixed-top navbar-dark bg-inverse">
      <button class="navbar-toggler hidden-md-up" type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation"></button>
      <div class="collapse navbar-toggleable-sm" id="navbar">
        <a class="navbar-brand" href="#">運(yùn)維工具</a>

這里注意了h6 里面的引用超鏈接有相對路徑和絕對路徑的區(qū)別

<a href="url" 
title="">鏈接</a> 
其中,url可以是一個(gè)絕對網(wǎng)址,比如:http://www.xuexuexi.com;也可以是一個(gè)相對的網(wǎng)頁。如:123.html;還可以是其它
文件。比如pdf,doc等等。還有一種是根目錄的方式,根目錄其實(shí)跟絕對路徑有些相似,就是去掉前面的域名即可,比如:<a 


這個(gè)是相對路徑href="/html/h2.html">鏈接</a>,



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI