CSS Word-Spacing Group Words?

755 views Asked by At

I am trying to place some URLS with a 10px word-spacing between them but I have no idea how I can group 2 or more words to act as a group and not have the word-spacing applying for them.

#spacing {
    font-size: 22px;
    line-height: middle;
    margin: 0 !important;
    word-spacing: 10px;
}

The Terms & Policies below got some huge space between them :)

<div id="spacing">
    <a href=""> Home </a>
    <a href=""> About </a>
    <a href=""> Terms &amp; Policies </a>
    <a href=""> Links </a>
    <a href=""> Advertise </a>
</div>
0

There are 0 answers