2012-05-02 78 views
-1

我編碼這個CSS,爲什麼'搜索'消失?感謝CSS文本消失

<h2 class="domain_header">Search</h2> 


.domain_header { 
    cursor: pointer; 
    display: block; 
    padding: 5px; 
    color: #fff; 
    position: relative; 
    text-transform: uppercase; 
    font-size: 12px; 
    letter-spacing: 2px; 
    border-left: 0px solid #06f; 
    border-bottom: 2px solid #0066FF; 
    font-weight:bold; 
    margin:0 0 3px; 
} 
+4

因爲您將文本顏色設置爲'#fff'(白色),並且背景也是白色的? –

回答

1

試着改變你的文字不同的顏色白色文本。

.domain_header { 
    cursor: pointer; 
    display: block; 
    padding: 5px; 
    color: #000; 
    position: relative; 
    text-transform: uppercase; 
    font-size: 12px; 
    letter-spacing: 2px; 
    border-left: 0px solid #06f; 
    border-bottom: 2px solid #0066FF; 
    font-weight:bold; 
    margin:0 0 3px; 
} 
1

可能是因爲你有一個白色背景

1

嘗試按Ctrl + A,如果「搜索」是那麼明顯,那麼你知道那是因爲你有白色文字,白色背景@約翰說,如果沒有的話,我們需要看到更多的你碼。