The links in the "request" division are not displaying properly. The style.css file contains the following code for the links in this division:
.header .request a span{border-bottom:1px dotted}.header .request a:hover span{border-bottom:0}
Example: berdyanskaya56.ru
When a link is hovered over on the page, it becomes underlined. However, the CSS clearly specifies that it should not have any decoration. How can I resolve this issue?
Update: -> Objective: Make the links in the "request" division have a dotted underline when unhovered and no underline when hovered. All styling attributes for the links should be defined in the CSS file rather than in the HTML (avoid using style="text-decoration:none" in index.html).
-> Current situation: The link has a dotted underline, but it changes to a solid underline (_) instead of removing the underline when hovered over.