Html+css如何完成純文字與帶圖標(biāo)的按鈕
發(fā)表時(shí)間:2023-09-19 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這次給大家?guī)?lái)Html+css怎樣實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕,Html+css實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕的注意事項(xiàng)有哪些,下面就是實(shí)戰(zhàn)案例,一起來(lái)看一下。本文總結(jié)一下一些基礎(chǔ)頁(yè)面元素的實(shí)現(xiàn)方式,后續(xù)陸續(xù)更新。首先我們遇到最多的可能是按鈕的切圖,按鈕可能有很多種外觀,但是一般可分為純文字的和帶圖標(biāo)的按鈕...
這次給大家?guī)?lái)Html+css怎樣實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕,Html+css實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕的
注意事項(xiàng)有哪些,下面就是實(shí)戰(zhàn)案例,一起來(lái)看一下。
本文總結(jié)一下一些基礎(chǔ)頁(yè)面元素的實(shí)現(xiàn)方式,后續(xù)陸續(xù)更新。首先我們遇到最多的可能是按鈕的切圖,按鈕可能有很多種外觀,但是一般可分為純文字的和帶圖標(biāo)的按鈕,下面就來(lái)說(shuō)說(shuō)這兩種按鈕的實(shí)現(xiàn)方法。
</pre><pre name="code" class="html"><!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>按鈕寫法</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<link rel="stylesheet" href="css/style.css">
<style type="text/css">
a:hover{text-decoration: none;}
.btn{
display: inline-block;
margin-top: 10px;
padding: 10px 24px;
border-radius: 4px;
background-color: #63b7ff;
color: #fff;
cursor: pointer;
}
.btn:hover{
background-color: #99c6ff;
}
.inbtn{
border: none;
}
.bubtn{
border: none;
}
.btn{
font-style: normal;
}
.bgbtn span{
margin-left: 10px;
padding-left: 20px;
background: url(images/edit.png) left center no-repeat;
}
.bgbtn02 img{
margin-bottom: -3px;
margin-right: 10px;
}
</style>
</head>
<body>
<!--<a>標(biāo)簽按鈕-->
<a href="" class="btn">a標(biāo)簽按鈕</a>
<!--<input>標(biāo)簽按鈕-->
<input class="inbtn btn" type="button" value="input標(biāo)簽按鈕"/>
<!--<button>標(biāo)簽按鈕-->
<button class="bubtn btn">button標(biāo)簽按鈕</button>
<!--任意標(biāo)簽按鈕-->
<i class="ibtn btn">i標(biāo)簽按鈕</i>
<!--帶背景圖標(biāo)按鈕-->
<a href="" class="bgbtn btn">
<span>帶圖標(biāo)按鈕</span>
</a>
<a href="" class="bgbtn02 btn">
<img src="images/edit.png"/>帶圖標(biāo)按鈕
</a>
</body>
</html>
相信看了這些案例你已經(jīng)掌握了方法,更多精彩請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
相關(guān)閱讀:
怎樣用HTML和CSS做出大白
XHTML中有哪些常用的標(biāo)簽
在HTML中水平線標(biāo)注與代碼注釋應(yīng)該如何使用
以上就是Html+css怎樣實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語(yǔ),涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。