Текст -украшение :нет не работает

Совсем сбит с толку! Я пытался переписать строку text-decoration: noneнесколькими способами. Мне также удалось изменить -размер текста, нацелившись на него, но код text-decoration: noneне примет.

Помощь очень ценится.

Код

.widget    
{
     height: 320px;
     width: 220px;
     background-color: #e6e6e6;
     position: relative;                              
     overflow: hidden;                          
}


.title    
{
     font-family: Georgia, Times New Roman, serif;
     font-size: 12px;
     color: #E6E6E6;
     text-align: center;
     letter-spacing: 1px;
     text-transform: uppercase;
     background-color: #4D4D4D;    
     position: absolute;
     top: 0;
     padding: 5px;
     width: 100%;
     margin-bottom: 1px;
     height: 28px;
     text-decoration: none;
}

a.title    
{
     text-decoration: none;
}
<a href="#">
    <div class="widget">  
        <div class="title">Underlined. Why?</div>  
    </div>
</a>
29
задан Solomon Ucko 9 March 2016 в 00:54
поделиться