2012-05-13 27 views

回答

3

Styles.css中,你有下面幾行:

#content img { 
    padding: 8px; 
    border: 1px #888 solid; 
    margin: 8px; 
    height: 200px; 
    width: 150px; 
} 

這些規則也適用於驗證碼內的圖像。

+0

啊啊非常感謝你!在這裏坐了幾個小時困惑。謝謝! – cbarlow123

+0

@ cbarlow123:在許多瀏覽器上,有一個選項可以檢查CSS和HTML。在Chrome上內置,在FireFox中有Firebug。 –

1

#content img有規則將寬度和高度設置爲不自然的值。你應該解決這個問題。

1

我回答了你同樣的問題在上https://stackoverflow.com/questions/10574177/recapcha-styling-messing-up/10574304#10574304

這又是。

這將整理您的問題了,以下內容添加到你的CSS

#content .recaptchatable img { 
    width: auto; 
    height: auto; 
    } 

出於某種原因,你在你的CSS以下

#content img { 
    padding: : 8px; 
    border: 1px #888 solid; 
    margin: 8px; 
    height: 200px; 
    width: 150px; 
    } 

這臺的高度和寬度爲每個圖像#content容器內。我提供的CSS將覆蓋此。

0

我對line-height屬性有問題。這個固定它:

.recaptchatable, #recaptcha_area tr, #recaptcha_area td, #recaptcha_area th { 
    line-height: 0; 
} 
相關問題