'Text-decoration:none'在Bootstrap中不起作用

Oll*_*y F 6 html css text-decorations twitter-bootstrap

在悬停时,我的文字链接有下划线.这是Bootstrap中的默认值.

我想保留这个,除非链接在某个div内.

我尝试的代码(和几个变体)不起作用.

HTML:

        <div class="wall-entry span5">
            <a href="">
            <img src="http://www.placehold.it/290x163" />
            <div class="wall-address">
                <p>Burgundy Street</p>
                <p>New Orleans, LA</p>
                <p>USA</p>
            </div>
            </a>
        </div>
Run Code Online (Sandbox Code Playgroud)

我的CSS:

.wall-entry     {
                background-color: @black;
                position: relative;

            img {
                opacity:0.4;
                filter:alpha(opacity=40); /* For IE8 and earlier */
                }

            div {
                position: absolute;
                left: 10px;
                bottom: 10px;
                p   {
                    line-height: 18px;
                    margin: 0;
                    font-family: Neuzit Heavy;
                    font-size: 18px;
                    color: white;
                    text-decoration: none;
                    }
                }
            }


div.wall-entry:hover img    {
                            opacity:1;
                            filter:alpha(opacity=100); /* For IE8 and earlier */                    
                            }

a div.wall-entry {text-decoration: none;}
Run Code Online (Sandbox Code Playgroud)

快速说明:我已经测试过a {text-decoration: none;},这确实有效.但是,我不想改变一切.只是这个特定情况下的链接.

Tal*_*boy 8

将font-family放在包含多个单词的字体的引号中,首先:

font-family: "Neuzit Heavy", sans-serif;

然后下面a.wall-entry a:hover { text-decoration: none; }

您已切换订单.您要定位的项目应该在右侧.例如,

.wrapper .header a 英文意思是"定位.header里面的所有锚链接,在.wrapper里面"