萬盛學電腦網

 萬盛學電腦網 >> 網頁制作 >> DivCSS教程 >> CSS選項卡切換的方法介紹

CSS選項卡切換的方法介紹

大家知道CSS選項卡切換的方法嗎?下面我們就給大家詳細介紹一下吧!我們積累了一些經驗,在此拿出來與大家分享下,請大家互相指正。

:target是什麼?

MDN是這樣描述的::target

The :target pseudo-class represents the unique element, if any, with an id matching the fragment identifier of the URI of the document.

在document中,可以設置錨鏈接,舉個例子:

CSS Code復制內容到剪貼板

 

 

This is another tab.

 

上面存在兩個錨鏈接:#tab和t#ab2。當點擊錨鏈接時,就會跳到對應的div,則::target就是給這些div用的。添加一下CSS

CSS Code復制內容到剪貼板

:target{

color:red;

}

#tab:target::after{

content:"tab1"

}

點擊錨鏈接,對應鏈接的div的文本變成紅色,另外,給#tab後面插入一個文本。

效果猛戳:https://jsfiddle.net/dwqs/cL8rawov/

應該大致明白了:target的含義了吧~

:target可以做什麼

最簡單的用處:利用:target實現選項卡切換。

HTML:

XML/HTML Code復制內容到剪貼板

 

 

 

 

 

This is a tab1

 

 

This is a tab2

 

 

This is a tab3

 

 

 

CSS:

CSS Code復制內容到剪貼板

.tab-control a{

display:inline-block;

text-decoration:none;

color:#FFF;

height:20px;

width:40px;

text-align:center;

line-height:20px;

background:rgba(70,121,189,0.75);

}

.tab-control a:hover{

background:rgba(70,121,189,1);

}

.tabs{

position:relative;

border:1px solid red;

height:200px;

width:135px;

overflow:hidden;

}

.tab{

height:100%;

width:100%;

}

:target{

display:block;

}

看看效果:Demo

當然,:target的功能不僅局限於此。隱藏元素、創建lightbox 等。MDN上給了很多個demo:more demo.

你自己也可以腦洞大開一下,哈哈。

浏覽器支持

相信大家已經學會CSS選項卡切換的方法了吧!感謝大家對我們網站的支持!

相關推薦:

CSS中對RGB顏色的使用方法介紹

copyright © 萬盛學電腦網 all rights reserved