How do I center a link with other text next to it?

nicholas79171

I have pagination at the bottom of a page and I'd like to keep the "Page 1 of 2" centered and just have the "Older" and "Newer" buttons wrap to it, even if there is only one of the two buttons present.

Here's what I currently have:

.wrapper {
  background-color: #aaa;
  width: 540px;
  margin: 0 auto;
  text-align: center;
}
.links {} .page {}
<div class="wrapper">
  <a href="#" class="links">Older</a>
  <span class="page">Page 1 of 2</span>
</div>

How do I keep "Page 1 of 2" centered in the div and just put the "Older" or "Newer" link adjacent to the left or right side of the span?

LorenzoD
.wrapper {
  background-color: #aaa;
  width: 100%;
  margin: 0 auto;
}
.items {
    position: relative;
    text-align: center;
}
.item {
    margin: 0 5px;
}
.always-left, .always-right {
    position: absolute;
    top: 0;
}

.always-left {
    left: 0;
}

.always-right {
    right: 0;
}
<div class="wrapper items">
  <a class="item always-left" href="#">Older</a>
  <div class="item">Page 1 of 2</div>
  <a class="item always-right" href="#">Older</a>
</div>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I align text next to other centered text

From Dev

How do I align text next to other centered text

From Dev

How do I align text boxes next to each other in forms

From Dev

how do I interpolate a Link component in Next-i18next / React i18next that changes position in the text

From Dev

How do I center text in a span?

From Java

How do I vertically center text with CSS?

From Dev

How do I center UILabel TEXT horizontally?

From Dev

How do I center text in a spinner in Android

From Dev

How do I center text in a Horizontal StackLayout?

From Dev

How do I center the text inside the white?

From Dev

How do I center text in a span?

From Dev

How to center text next to image?

From Dev

How do i get the text in jsoup link?

From Dev

How do I make an element appear in the center of a screen from a link?

From Dev

How do I put text next to bordered text?

From Dev

how do I open <li> next to each other?

From Dev

How do I get the divs to float next to, and below each other

From Dev

How do I put these 2 dates next to each other?

From Dev

XAML - How do I align controls next to each other in a StackPanel

From Dev

How do I stack a column next to each other in SQL?

From Dev

How can I float two tables next to each other left to right and center them both?

From Java

How do I center text vertically and horizontally in Flutter?

From Java

How do I center text horizontally and vertically in a TextView?

From Dev

How do I Vertically Center Text in My Navigation Bar?

From Dev

How do I vertically center text in a DIV using CSS?

From Dev

How do I vertically center an image with a text block?

From Dev

In Inno Setup, how do I center some text in the window?

From Dev

How do I center my text without creating another style

From Dev

How do I center text when there is a vertical navbar/sidebar?

Related Related

  1. 1

    How do I align text next to other centered text

  2. 2

    How do I align text next to other centered text

  3. 3

    How do I align text boxes next to each other in forms

  4. 4

    how do I interpolate a Link component in Next-i18next / React i18next that changes position in the text

  5. 5

    How do I center text in a span?

  6. 6

    How do I vertically center text with CSS?

  7. 7

    How do I center UILabel TEXT horizontally?

  8. 8

    How do I center text in a spinner in Android

  9. 9

    How do I center text in a Horizontal StackLayout?

  10. 10

    How do I center the text inside the white?

  11. 11

    How do I center text in a span?

  12. 12

    How to center text next to image?

  13. 13

    How do i get the text in jsoup link?

  14. 14

    How do I make an element appear in the center of a screen from a link?

  15. 15

    How do I put text next to bordered text?

  16. 16

    how do I open <li> next to each other?

  17. 17

    How do I get the divs to float next to, and below each other

  18. 18

    How do I put these 2 dates next to each other?

  19. 19

    XAML - How do I align controls next to each other in a StackPanel

  20. 20

    How do I stack a column next to each other in SQL?

  21. 21

    How can I float two tables next to each other left to right and center them both?

  22. 22

    How do I center text vertically and horizontally in Flutter?

  23. 23

    How do I center text horizontally and vertically in a TextView?

  24. 24

    How do I Vertically Center Text in My Navigation Bar?

  25. 25

    How do I vertically center text in a DIV using CSS?

  26. 26

    How do I vertically center an image with a text block?

  27. 27

    In Inno Setup, how do I center some text in the window?

  28. 28

    How do I center my text without creating another style

  29. 29

    How do I center text when there is a vertical navbar/sidebar?

HotTag

Archive