How do you easily horizontally center a <div> using CSS?

cmcginty

I'm trying to horizontally center a <div> block element on a page and have it set to a minimum width. What is the simplest way to do this? I want the <div> element to be inline with rest of my page. I'll try to draw an example:

page text page text page text page text
page text page text page text page text
               -------
               | div |
               -------
page text page text page text page text
page text page text page text page text
Tivie

In the case of a non-fixed width div (i.e. you don't know how much space the div will occupy).

#wrapper {
  background-color: green; /* for visualization purposes */
  text-align: center;
}
#yourdiv {
  background-color: red; /* for visualization purposes */
  display: inline-block;
}
<div id="wrapper">    
    <div id="yourdiv">Your text</div>
</div>

Keep in mind that the width of #yourdiv is dynamic -> it will grow and shrink to accommodate the text inside it.

You can check browser compatibility on Caniuse

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How do I horizontally center a span element inside a div

分類Dev

How to vertically and horizontally center two images inside a div on a responsive page

分類Dev

How to center an iframe horizontally?

分類Dev

HTML,CSS — How to horizontally center two tables side by side

分類Dev

How do I align three columns to the center using CSS?

分類Dev

How do you make a div shaped like a quarter of an ellipse in CSS?

分類Dev

How to equally distribute elements horizontally using CSS

分類Dev

Unable to center div horizontally, position fixed involved

分類Dev

How to horizontally align CSS :hover buttons inside a centered parent div?

分類Dev

Center an image horizontally with CSS, on top of a background video

分類Dev

CSS - How do I align my divs horizontally?

分類Dev

How do I reference the center of a textblock with CSS?

分類Dev

How to put content center vertically and horizontally with tailwind.css in React, Next.js?

分類Dev

CSS: Cannot center a div

分類Dev

Div container won't center using CSS & HTML

分類Dev

How to make a heading with image and text horizontally center?

分類Dev

How do you easily add equation numbers to Microsoft Word 2010 equations?

分類Dev

How do you loop an array and append it to a div?

分類Dev

How do you reset/normalize your css using google material design (angular4)?

分類Dev

How do you get this result, using Jquery Scroll Event & offset/position, css or javascript?

分類Dev

How do I center text inside of a div with Foundation?

分類Dev

How do I center this horizontal list within a fixed div?

分類Dev

How do I center an element within a div with another element nearby?

分類Dev

css div won't center

分類Dev

How to align <div> to center?

分類Dev

How do you confirm django is using memcached?

分類Dev

How do you put <div> inside a table tag?

分類Dev

Unable to Center Text using CSS

分類Dev

How to show middle of image in div using css?

Related 関連記事

  1. 1

    How do I horizontally center a span element inside a div

  2. 2

    How to vertically and horizontally center two images inside a div on a responsive page

  3. 3

    How to center an iframe horizontally?

  4. 4

    HTML,CSS — How to horizontally center two tables side by side

  5. 5

    How do I align three columns to the center using CSS?

  6. 6

    How do you make a div shaped like a quarter of an ellipse in CSS?

  7. 7

    How to equally distribute elements horizontally using CSS

  8. 8

    Unable to center div horizontally, position fixed involved

  9. 9

    How to horizontally align CSS :hover buttons inside a centered parent div?

  10. 10

    Center an image horizontally with CSS, on top of a background video

  11. 11

    CSS - How do I align my divs horizontally?

  12. 12

    How do I reference the center of a textblock with CSS?

  13. 13

    How to put content center vertically and horizontally with tailwind.css in React, Next.js?

  14. 14

    CSS: Cannot center a div

  15. 15

    Div container won't center using CSS & HTML

  16. 16

    How to make a heading with image and text horizontally center?

  17. 17

    How do you easily add equation numbers to Microsoft Word 2010 equations?

  18. 18

    How do you loop an array and append it to a div?

  19. 19

    How do you reset/normalize your css using google material design (angular4)?

  20. 20

    How do you get this result, using Jquery Scroll Event & offset/position, css or javascript?

  21. 21

    How do I center text inside of a div with Foundation?

  22. 22

    How do I center this horizontal list within a fixed div?

  23. 23

    How do I center an element within a div with another element nearby?

  24. 24

    css div won't center

  25. 25

    How to align <div> to center?

  26. 26

    How do you confirm django is using memcached?

  27. 27

    How do you put <div> inside a table tag?

  28. 28

    Unable to Center Text using CSS

  29. 29

    How to show middle of image in div using css?

ホットタグ

アーカイブ