2013-02-22 57 views
-1
圖像陰影

有誰知道如何像這樣創建CSS:創建CSS

enter image description here

請幫我的傢伙,居然創建按鈕的陰影。

好吧,我已經試過這一點,並難以創造陰影:

CSS代碼

a{ 
    display: inline-block; 
    width:9px; 
    height:9px; 
    border-radius:50px; 
    font-size:20px; 
    color:#fff; 
    line-height:100px; 
    text-align:center; 
    text-decoration:none; 
    background-color: #1f1f1f !important; 
    margin: 2px 2px 2px 2px !important; 
    border: 1px #bebebd inset; 
} 

a.active { 
    display: inline-block; 
    width:10px; 
    height:10px; 
    border-radius:50px; 
    font-size:20px; 
    color:#fff; 
    line-height:100px; 
    text-align:center; 
    text-decoration:none; 
    background-color: #2880d7 !important; 
    margin: 2px 2px 2px 2px !important; 
    border: 0px; 
} 

HTML代碼

<a href="#"></a> 
<a href="#" class="active"></a> 

請幫我的傢伙,居然創建按鈕的陰影。

預先感謝

+0

是的,這是我的功課,我嘗試了這些:
Manellen 2013-02-22 07:15:28

+0

a{ display: inline-block; width:9px; height:9px; border-radius:50px; font-size:20px; color:#fff; line-height:100px; text-align:center; text-decoration:none; background-color: #1f1f1f !important; margin: 2px 2px 2px 2px !important; border: 1px #bebebd inset; } Manellen 2013-02-22 07:19:20

+0

a.active{ display: inline-block; width:10px; height:10px; border-radius:50px; font-size:20px; color:#fff; line-height:100px; text-align:center; text-decoration:none; background-color: #2880d7 !important; margin: 2px 2px 2px 2px !important; border: 0px; } Manellen 2013-02-22 07:19:46

回答

0
a{ 
    display: inline-block; 
    width:9px; 
    height:9px; 
    border-radius:50px; 
    font-size:20px; 
    color:#fff; 
    line-height:100px; 
    text-align:center; 
    text-decoration:none; 
    background-color: #1f1f1f !important; 
    margin: 2px 2px 2px 2px !important; 
    border: 1px #bebebd inset; 
    box-shadow: 2px 2px 5px #888888; 
} 

與你的CSS a{}

取代這個如果是不夠的,你看這link

+0

嗨ANK,謝謝你的迴應,當我們看到那些圖像時,描述陰影是內在的陰影,那麼怎麼樣? – Manellen 2013-02-22 09:40:09

+0

在CSS .a類中使用box-shadow標記。通過這個標籤,我們必須設置水平陰影的位置,垂直陰影的位置,陰影的大小和陰影的顏色... – 2013-02-22 09:57:12

+1

謝謝ANK,我用你的建議來使用盒子陰影。 – Manellen 2013-02-25 04:47:55