Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Text Decoration Issue

  • This topic is empty.
Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #110127
    alex_wilson
    Participant

    Thank you! Someone else said I should use:

    article a:link,
    article a:active,
    article a:visited,
    article a:hover {
    text-decoration: none;
    }

    Thanks again! And I already looked up CSS reset, just haven’t read it thoroughly.

    #110128
    Paulie_D
    Member

    ‘text-decoration’ relates (usually) to links.

    The code you posted will stop links in articles being underlined in any circumstances.

    It’s a choice…some people prefer to have links underlined when they are hovered but some prefer a color change.

    As I said, it’s a choice.

    #110130
    sachinn
    Member

    hi alex,

    Used this Css Selector:
    It will none all the text decoration property.
    * {
    text-decoration: none !important;
    }

    #110131
    Paulie_D
    Member

    @sachinn I wouldn’t do that because there may be occasions when you might want to use text-decoration and you’ve just made that practically impossible.

Viewing 4 posts - 16 through 19 (of 19 total)
  • The forum ‘CSS’ is closed to new topics and replies.