CSS基礎範例

2022-08-21 03:09:14 字數 2471 閱讀 7834

1

doctype html

>

2<

html

lang

="en"

>

3<

head

>

4<

meta

charset

="utf-8"

>

5<

title

>title

title

>

6<

style

>7*

11body

14.top

20.box

27.box-top

33.box-top h3

38.box-top a

43.box-regist input

49.box-regist .inpbox

52.box-regist a

63.btn

66.tail

7172

style

>

73head

>

74<

body

>

75<

div

class

="top"

>

div>

76<

div

class

="box"

>

77<

div

class

="box-top"

>

78<

h3>請註冊

h3>

79<

a href

="f:\專案\html\標籤.html"

>立即登陸》

a>

80div

><

br>

81<

div

class

="box-regist"

>

82<

form

method

="post"

action

="">

83<

input

type

="text"

placeholder

="請輸入手機號"

name

="phone"

><

br>

84<

input

class

="inpbox"

type

="text"

placeholder

="請輸入簡訊驗證碼"

name

="cookie"

><

a>傳送驗證碼

a><

br>

85<

input

type

="text"

placeholder

="請輸入使用者名稱"

name

="user"

><

br>

86<

input

type

="password"

placeholder

="請輸入密碼"

name

="psw"

><

br>

87<

input

type

="password"

placeholder

="請再次輸入密碼"

name

="pswt"

><

br>

88<

input

class

="inpbox"

type

="text"

placeholder

="請輸入圖形驗證碼"

name

="img-cookie"

><

a>此處為圖形

a><

br>

89<

input

class

="btn"

type

="submit"

value

="立即註冊"

>

90form

>

91div

>

92div

>

93<

div

class

="bot1"

>

div>

94<

div

class

="bot2"

>

div>

95<

div

class

="tail"

>

div>

96body

>

97html

>

CSS 線性漸變屬性值及範例詳解

漸變色函式的結果屬於資料型別,是一種特別的資料型別,所以漸變色只能被用於可以使用的地方 linear gradient 用角度值指定漸變的方向 或角度 角度順時針增加。包括乙個顏色值及可選的終點位置 從何時開始漸變 顏色沿著漸變軸的方向顏色變化順序為 顏色1 完全融合 顏色2 定義漸變中點,就是定義...

《C語言程式開發範例寶典》 基礎

例項002 十進位制轉換為二進位制 乙個0 32768的十進位制數轉換為16位二進位制數 for m 0 m 15 m 例項003 將乙個n進製數轉換為10進製數 例項004 通過遞迴實現將二進位制數轉換為十進位制數 int bin dec int x,int n return x bin dec ...

lua 範例 Lua讀寫檔案範例

檔案讀寫 檔案讀寫對製作遊戲很有幫助。可以呼叫別的檔案中的 儲存最高分 遊戲存檔 玩家狀態等信寫到檔案中。首先,讓我們看乙個簡單的命令 dofile。這個命令會讀入另乙個檔案的 並立即執行。dofile test.lua 很簡單的命令。注意 是指根目錄,不是子目錄。如果是子目錄,應該這樣用 dofi...