中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

漂亮的css表單樣式,漂亮的css表單樣式圖片

表格細邊框的CSS樣式怎么設置?

指定的table為細邊框,把table放在div中即可。

創(chuàng)新互聯專注于閬中網站建設服務及定制,我們擁有豐富的企業(yè)做網站經驗。 熱誠為您提供閬中營銷型網站建設,閬中網站制作、閬中網頁設計、閬中網站官網定制、微信小程序開發(fā)服務,打造閬中網絡公司原創(chuàng)品牌,更為您提供閬中網站排名全網營銷落地服務。

一、首先新建表格,代碼如下:

table width="500" border="1"? trtdnbsp;/tdtdnbsp;/tdtdnbsp;/td/tr trtdnbsp;/tdtdnbsp;/tdtdnbsp;/td /trtr? tdnbsp;/td tdnbsp;/tdtdnbsp;/td/tr/table。

二、在table里加css樣式,代碼如下:

table width="500" border="1" cellpadding="0" cellspacing="0" style="border-collapse:collapse;"? tr tdnbsp;/tdtdnbsp;/td tdnbsp;/td /tr tr tdnbsp;/tdtdnbsp;/tdtdnbsp;/td/tr trtdnbsp;/tdtdnbsp;/tdtdnbsp;/td/table。

三、單元格邊距(表格填充)(cellpadding) -- 代表單元格外面的一個距離,用于隔開單元格與單元格空間。單元格間距(表格間距)(cellspacing) -- 代表表格邊框與單元格補白的距離,也是單元格補白之間的距離,border-collapse:collapse表示表格的兩邊框合并為一條即可。

html 怎么設置漂亮的表單樣式

html 設置漂亮的表單樣式,以下是代碼:

1、編寫一個from表單

form id="payment"

fieldset

legend用戶詳細資料/legend

ol

li

label for="name"用戶名稱:/label

input id="name" name="name" type="text" placeholder="請輸入用戶名" required autofocus

/li

li

label for="email"郵件地址:/label

input id="email" name="email" type="email" placeholder="example@163.com" required

/li

li

label for="phone"聯系電話:/label

input id="phone" name="phone" type="tel" placeholder="010-12345678" required

/li

/ol

/fieldset

fieldset

legend家庭住址(收貨地址):/legend

ol

li

label for="address"詳細地址:/label

textarea id="address" name="address" rows="1" required/textarea

/li

li

label for="postcode"郵政編碼:/label

input id="postcode" name="postcode" type="text" required

/li

li

label for="country"國 家:/label

input id="country" name="country" type="text" required

/li

/ol

/fieldset

fieldset

legend付費方式/legend

ol

li

fieldset

legend信用卡類型/legend

ol

li

input id="visa" name="cardtype" type="radio"

label for="visa"中國工商銀行/label

/li

li

input id="amex" name="cardtype" type="radio"

label for="amex"中國人民銀行/label

/li

li

input id="mastercard" name="cardtype" type="radio"

label for="mastercard"中國建設銀行/label

/li

/ol

/fieldset

/li

li

label for="cardnumber"銀行卡號:/label

input id="cardnumber" name="cardnumber" type="number" required

/li

li

label for="secure"驗 證 碼:/label

input id="secure" name="secure" type="number" required

/li

li

label for="namecard"持 卡 人:/label

input id="namecard" name="namecard" type="text" placeholder="確定是否該卡用戶!" required

/li

/ol

/fieldset

fieldset

button type="submit"現在購買/button

/fieldset

/form

2、編寫css樣式

style type="text/css"

/*分別定義HTML中和標記之的距離樣式*/

html, body, h1, form, fieldset, legend, ol, li {

margin: 0;

padding: 0;

}

/*定義body標記樣式*/

body {

background: #ffffff;

color: #111111;

font-family: Georgia, "Times New Roman", Times, serif;

padding-left: 20px;

}

/*定義付費內容的樣式*/

form#payment {

background: #9cbc2c;

-webkit-border-radius: 5px;

border-radius: 5px;

padding: 20px;

width: 400px;

margin:auto;

}

form#payment fieldset {

border: none;

margin-bottom: 10px;

}

form#payment fieldset:last-of-type { margin-bottom: 0; }

form#payment legend {

color: #384313;

font-size: 16px;

font-weight: bold;

padding-bottom: 10px;

text-shadow: 0 1px 1px #c0d576;

}

form#payment fieldset legend:before {

content: "Step " counter(fieldsets) ": ";

counter-increment: fieldsets;

}

form#payment fieldset fieldset legend {

color: #111111;

font-size: 13px;

font-weight: normal;

padding-bottom: 0;

}

form#payment ol li {

background: #b9cf6a;

background: rgba(255, 255, 255, .3);

border-color: #e3ebc3;

border-color: rgba(255, 255, 255, .6);

border-style: solid;

border-width: 2px;

-webkit-border-radius: 5px;

line-height: 30px;

list-style: none;

padding: 5px 10px;

margin-bottom: 2px;

}

form#payment ol ol li {

background: none;

border: none;

float: left;

}

form#payment label {

float: left;

font-size: 13px;

width: 110px;

}

form#payment fieldset fieldset label {

background: none no-repeat left 50%;

line-height: 20px;

padding: 0 0 0 30px;

width: auto;

}

form#payment fieldset fieldset label:hover { cursor: pointer; }

form#payment input:not([type=radio]), form#payment textarea {

background: #ffffff;

border: #FC3 solid 1px;

-webkit-border-radius: 3px;

font: italic 13px Georgia, "Times New Roman", Times, serif;

outline: none;

padding: 5px;

width: 200px;

}

form#payment input:not([type=submit]):focus, form#payment textarea:focus {

background: #eaeaea;

border: #F00 solid 1px;

}

form#payment input[type=radio] {

float: left;

margin-right: 5px;

}

/style

3、漂亮的表單生成。

怎么設置漂亮的表格的樣式 css

下面來個例子,你可以復制到你的編輯器里修改測試

style type="text/css"

table.gridtable {}{

font-family: verdana,arial,sans-serif;

font-size:11px;

color:#333333;

border-width: 1px;

border-color: #666666;

border-collapse: collapse;

}

table.gridtable th {}{

border-width: 1px;

padding: 8px;

border-style: solid;

border-color: #666666;

background-color: #dedede;

}

table.gridtable td {}{

border-width: 1px;

padding: 8px;

border-style: solid;

border-color: #666666;

background-color: #ffffff;

}

/style

!-- Table goes in the document BODY --

table class="gridtable"

tr

thInfo Header 1/ththInfo Header 2/ththInfo Header 3/th

/tr

tr

tdText 1A/tdtdText 1B/tdtdText 1C/td

/tr

tr

tdText 2A/tdtdText 2B/tdtdText 2C/td

/tr

/table

CSS(層疊樣式表)級聯樣式表是一種用來表現HTML(標準通用標記語言的一個應用)或XML(標準通用標記語言的一個子集)等文件樣式的計算機語言。

好看的CSS字體和表格樣式還有文本框樣式,好看的加分,100分。復制原碼給我

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " "

html xmlns=" "

meta http-equiv="Content-Type" content="text/html; charset=utf-8" /

title無標題文檔/titlehtml

head

style type="text/css"

!--

.BG {border: 1px solid #FFCC00; br}

.BG1 {border: 1px dashed #CCCCCC; br}

.BG2 {border: 1px inset #3399CC; br}

.BG3 {border-top-width: 1px; brborder-right-width: 1px; brborder-bottom-width: 1px; brborder-left-width: 1px; brborder-top-style: dotted; brborder-right-style: solid; brborder-bottom-style: double; brborder-left-style: outset; brborder-top-color: #999999; brborder-right-color: #FF9900; brborder-bottom-color: #CC9999; brborder-left-color: #99CC00; br}

.BG4 {border-top-width: 1px; brborder-right-width: 1px; brborder-bottom-width: 1px; brborder-left-width: 1px; brborder-top-style: dashed; brborder-right-style: none; brborder-bottom-style: dashed; brborder-left-style: none; brborder-top-color: #FFCC00; brborder-right-color: #FFCC00; brborder-bottom-color: #FFCC00; brborder-left-color: #FFCC00; br}

--

/style

/head

body

table width="300" border="0" cellpadding="0" cellspacing="0" class="BG"

tr

td bgcolor="#FFFF99"div align="center"模擬百度的表格/div/td

/tr

tr

td/td

/tr

/table

p /p

table width="300" border="0" cellpadding="0" cellspacing="0" class="BG1"

tr

td bgcolor="#CCCCCC"div align="center"模擬很多BLOG表格/div/td

/tr

tr

td/td

/tr

/table

p /p

table width="300" border="0" cellpadding="0" cellspacing="0" class="BG2"

tr

tddiv align="center"新款式表格/div/td

/tr

tr

td/td

/tr

/table

p /p

table width="300" border="0" cellpadding="0" cellspacing="0" class="BG3"

tr

tddiv align="center"花式表格/div/td

/tr

tr

td/td

/tr

/table

p /p

table width="300" border="0" cellpadding="0" cellspacing="0" class="BG4"

tr

tddiv align="center"去任意邊表格/div/td

/tr

tr

td/td

/tr

/table

p /p

p /p

p /p

/body

/html

整個頁面的,復制看看把

文章標題:漂亮的css表單樣式,漂亮的css表單樣式圖片
網頁地址:http://www.rwnh.cn/article28/dsdjojp.html

成都網站建設公司_創(chuàng)新互聯,為您提供關鍵詞優(yōu)化、網站改版ChatGPT、定制網站、企業(yè)建站服務器托管

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯

外貿網站制作
五河县| 长顺县| 明溪县| 临洮县| 松原市| 全州县| 澳门| 马鞍山市| 托克托县| 美姑县| 柞水县| 潞西市| 交城县| 额敏县| 临潭县| 绥化市| 类乌齐县| 麻阳| 顺义区| 房山区| 济南市| 聂拉木县| 沙田区| 寿光市| 当涂县| 婺源县| 玉田县| 柞水县| 临沧市| 洞头县| 北京市| 绥德县| 呼图壁县| 尼勒克县| 伊金霍洛旗| 大田县| 海阳市| 左云县| 正宁县| 张家界市| 增城市|