溫馨提示×

溫馨提示×

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

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

HTML如何實(shí)現(xiàn)網(wǎng)站頭部logo區(qū)和搜索框區(qū)

發(fā)布時間:2022-02-22 13:50:02 來源:億速云 閱讀:238 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下HTML如何實(shí)現(xiàn)網(wǎng)站頭部logo區(qū)和搜索框區(qū),希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

  先確定版心div,然后用定位布局,分出幾個小div,logo區(qū)用定位,搜索框用定位。另外logo圖片用背景圖片,不用img。相對來說這個區(qū)別的設(shè)置用定位相對會比較浮動布局簡單一些。定位口訣:子絕父相。為了利于SEO,logo區(qū)要放h2標(biāo)簽。用指向首頁,鏈接背景設(shè)置尺寸和logo圖片一樣大。鏈接文字為首頁title,這樣做有利于SEO優(yōu)化。為了讓文字不顯示出來,可以用首行縮進(jìn)的方法,然后溢出隱藏文字。搜索框和按鈕都用左浮動。搜索框用outline:none取消藍(lán)色輪廓線。購物車統(tǒng)計顯示的數(shù)據(jù)不要給寬度,給個高度就可以了,它用絕對定位。

  html代碼:

	<!--頭部 begin -->
	<div class="header w">
		<div class="logo">
			<a href="index.html">品優(yōu)購</a>
		</div>
		<div class="search">
			<input type="text"value="請搜索內(nèi)容">
			<button type="button" >搜索</button>
		</div>
		<div class="hotwords">
			
			<a href="" class="style-red">臺機(jī)超值購</a>
			<a href="">品質(zhì)居家</a>
			<a href="">金秋風(fēng)暴</a>
			<a href="">暴家裝建材</a>
			<a href="">羊羔奶粉</a>
			<a href="">運(yùn)動戶外</a>
			<a href="">豐收節(jié)低至9.9</a>
			
		</div>
		<div class="shopcar">
			<i class="car">?</i>我的購物車<i class="arror">?</i>
			<i class="count">8</i>
		</div>
	</div
	<!--頭部end-->

  css代碼:

/*header*/
.header {
	position: relative;
	height: 105px;
	
}

.logo {
	position: absolute; /*絕對定位*/
	top:25px;
	left: 0;
	width: 175px;
	height: 56px;
	
}

.logo a{
	display: block;
	overflow: hidden; /*溢出隱藏*/
	width: 175px;
	height: 56px;
	background: url(../images/logo.png) no-repeat;
	text-indent: -999px; /*縮進(jìn)負(fù)方向*/
}

.search {
	position: absolute;
	top:25px;
	left: 348px;
	
}

.search input{
	float: left;
	width: 455px;
	height: 32px;
	border: 2px solid #b1191a;
	padding-left: 10px;  /*會撐開,所以寬度減去10px*/
	color: #ccc;
}

.search button {
	float: left;
	width: 82px;
	height: 36px;
	background-color: #b1191a;
	border: 0;
	font-size: 16px;
	color: #FFFFFF;
}

.hotwords {
	position: absolute;
	top:65px;
	left: 348px;
}

.hotwords a{
	margin: 0 10px;
}

.shopcar {
	position: absolute;
	top: 25px;
	right: 64px;
	width: 138px;
	height: 34px;
	border: 1px solid #dfdfdf;
	background-color: #f7f7f7;
	line-height: 34px;
	text-align: center;
}

.car {
	font-family: 'icomoon';
	margin-right: 5px;
	color: #da5555;
}

.arror {
	font-family: 'icomoon';
	margin-left: 3px;
}

.count {
	position: absolute;
	top: -5px;
	left: 100px;
	background-color: #e60012;
	height: 14px;
	line-height: 14px;
	padding: 0 3px;
	color: #FFFFFF;
	border-radius:7px 7px 7px 0; /*左上角 右上角 右下角 左下角*/
}

看完了這篇文章,相信你對“HTML如何實(shí)現(xiàn)網(wǎng)站頭部logo區(qū)和搜索框區(qū)”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

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

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

AI