6

text-decoration: underlineを使用する 2 つのスパンで問題が発生していますinline-block。[問題は、ホバーしたときに URL の一部のみに下線が引かれ、他の部分には下線が付かないことです。表示プロパティを保持する必要があります。それ以外の場合text-overflowは適用されません (参照:テキストオーバーフロー: 省略記号の配置の問題)

ここに画像の説明を入力

HTML:

<div class="details" itemscope itemtype="http://data-vocabulary.org/Product"> 
   <h2>
       <a class="heading" href="/product/acmesw" title="Acme Super Widget">
           <span class="trunc" itemprop="name">Acme Super Widget 3000</span>
           <span itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">- <meta itemprop="currency" content="AUD" /><spanitemprop="price">$199.95</span></span>     
        </a>
    </h2>
</div>

CSS:

.details {
    width:300px;
    border:1px solid red;
}
.trunc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width:60%;
}

h2 span {
    display:inline-block;
    vertical-align:top;
}

a:hover{
    text-decoration:underline;
    color:red;
}

jsFiddle: http://jsfiddle.net/c7p8w/2/

4

3 に答える 3

3

border-bottomテキストに下線を引くために使用するのはどうですか?

a {
     text-decoration:none;
    border-bottom: 1px solid blue; /*Remove this if you want it only on hover*/
}
a:hover {
    text-decoration:none;
    border-bottom: 1px solid red;
    color:red;
}

フィドル

于 2013-05-30T03:41:20.740 に答える
1

ちょっと変だけど…

これらのcssを追加しますか?

CSS

.details h2{
    border-bottom:1px solid #fff; /*use the same color as your .details background color*/
}
.details h2:hover {
    border-bottom:1px solid #f00;
}

jsfiddel の DEMO を参照してください... http://jsfiddle.net/c7p8w/14/

于 2013-05-30T03:44:59.257 に答える