2 圓角選單的兩種方法和選單的縮放

2022-07-02 09:03:07 字數 2647 閱讀 9451

doctype html

>

<

html

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>垂直選單

title

>

<

style

type

="text/css"

>

*.class1

.class1 li a

.class1 li .shouye,.class1 li a:hover

style

>

head

>

<

body

>

<

ul class

="class1"

>

<

li><

a href

=""class

="shouye"

>首 頁

a>

li>

<

li><

a href

="">新聞快訊

a>

li>

<

li><

a href

="">產品展示

a>

li>

<

li><

a href

=""a

>

li>

ul>

body

>

html

>

方法二:直接設定成圓角樣式 style

doctype html

>

<

html

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>垂直選單

title

>

<

style

type

="text/css"

>

*.class2

.class2 li a

.class2 li .shouye,.class2 li a:hover

style

>

head

>

<

body

>

<

ul class

="class2"

>

<

li><

a href

=""class

="shouye"

>首 頁

a>

li>

<

li><

a href

="">新聞快訊

a>

li>

<

li><

a href

="">產品展示

a>

li>

<

li><

a href

=""a

>

li>

ul>

body

>

html

>

doctype html

>

<

html

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>垂直選單

title

>

<

style

type

="text/css"

>*/*

可以伸縮的選單

*/.class3

.class3 li a

.class3 .shouye

.class3 .shouye:hover,.class3 a:hover

style

>

head

>

<

body

>

<

ul class

="class3"

>

<

li><

a href

=""class

="shouye"

>首 頁

a>

li>

<

li><

a href

="">新聞快訊

a>

li>

<

li><

a href

="">產品展示

a>

li>

<

li><

a href

=""a

>

li>

ul>

body

>

html

>

刪除MFC單文件預設選單欄的兩種方法

新建乙個mfc單文件程式,預設都有四個選單欄 檔案 編輯 檢視和幫助。怎麼把這四個選單欄刪除掉呢?有兩種方法 第一種方法 過載框架類的create函式,具體 如下 view plaincopy to clipboardprint?bool cmainframe create lpctstr lpsz...

VC在指定控制項中新增右鍵選單的兩種方法

1 在網上蒐集vc中向指定控制項新增右鍵彈出選單,談到的方法多數是新建乙個繼承自原來控制項的mfc控制項類,在該類的oncontextmenu cwnd pwnd cpoint point 函式中新增右鍵彈出選單的響應,完整 如下 void cmylistbox oncontextmenu cwnd...

刪除MFC單文件預設選單欄的兩種方法

第一種方法 過載框架類的create函式,具體 如下 bool cmainframe create lpctstr lpszclassname,lpctstr lpszwindowname,dword dwstyle const rect rect cwnd pparentwnd lpctstr l...