How can I center text inside a div element using CSS

user1142130

I want to center the text in paragraph elements both vertically and horizontally inside the div elements (red boxes). I'm trying to use vertical-align:middle but it's not working. Any help would be appreciated, Thanks.

http://jsfiddle.net/9NLtB/

.transparent-btn {
    font:bold 20px"Arial Black", Gadget, sans-serif;
    font-style:normal;
    color:#ffd324;
    background-color: rgba(255, 0, 0, .90);
    border:2px solid #000;
    text-shadow:0px -1px 1px #222222;
    box-shadow:0px 0px 12px #2e2300;
    -moz-box-shadow:0px 0px 12px #2e2300;
    -webkit-box-shadow:0px 0px 12px #2e2300;
    border-radius:15px 15px 15px 15px;
    -moz-border-radius:15px 15px 15px 15px;
    -webkit-border-radius:15px 15px 15px 15px;
    width:100px;
    height:100px;
    margin:5px;
    display:inline-block;
    position:relative;
}

.transparent-btn:active {
    cursor:pointer;
    position:relative;
    top:2px;
}

#wrapper {
    text-align:center;
}

p {
    display:inline-block;
    vertical-align:middle;
}
Michael Parker

Add a line-height property to your div, then specify it as normal in your text element.

.transparent-btn {
    line-height: 100px;
    text-align: center;
}


span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

And yes, this works with multiple lines of text:

Demo: http://jsfiddle.net/9NLtB/12/

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

How can I minify html, css, js/jquery and ruby code inside Sublime Text 3?

来自分类Dev

to align center using <ul> <li> inside div

来自分类Dev

How can I associate xml text with a preceding empty element in Python?

来自分类Dev

How can I target a <select> form element by name with CSS?

来自分类Dev

How can I create an element in HTML/CSS with a semicircle border at the top?

来自分类Dev

How can I use sed to find the lines that start with "X", then find and replace inside this line using Perl?

来自分类Dev

How can I change the selected text when using Multiple Select jQuery plugin

来自分类Dev

How can I extract text from images?

来自分类Dev

CSS text-align:center被忽略

来自分类Dev

How can we prevent that when I resize my window, my images move using HTML-CSS?

来自分类Dev

How to Add a Vertical Line inside a texbox using html and css

来自分类Dev

In Puppet, how can I access a variable/attribute inside a defined type?

来自分类Dev

How can I use find() on a map inside a vector of maps?

来自分类Dev

Buggy CSS animate (transition) a element inside a column?

来自分类Dev

Write text inside a div from JavaScript?

来自分类Dev

React: Getting the value of text inside a contentEditable div

来自分类Dev

How can I set element for entire width of the page? (Android)

来自分类Dev

Vue - how can i style an Element-UI datatable?

来自分类Dev

how put div center when use float

来自分类Dev

How to center contents of an absolute div horizontally

来自分类Dev

CSS Positioning of div inside list item

来自分类Dev

How can I use jQuery to move multiple instances of a div?

来自分类Dev

使用CSS变换在Center Div上进行动画

来自分类Dev

How can I change the text in the Wix installer dialog?

来自分类Dev

How to parse a text file (CSV) into haskell so I can operate on it?

来自分类Dev

How to align form at the center of the page in html/css

来自分类Dev

How can automatically wrapped to a new line the text inside an HTML table cell?

来自分类Dev

How can I exclude last two child elements with CSS selector?

来自分类Dev

How do I mock a method call inside the method I want to test using NUnit?

Related 相关文章

  1. 1

    How can I minify html, css, js/jquery and ruby code inside Sublime Text 3?

  2. 2

    to align center using <ul> <li> inside div

  3. 3

    How can I associate xml text with a preceding empty element in Python?

  4. 4

    How can I target a <select> form element by name with CSS?

  5. 5

    How can I create an element in HTML/CSS with a semicircle border at the top?

  6. 6

    How can I use sed to find the lines that start with "X", then find and replace inside this line using Perl?

  7. 7

    How can I change the selected text when using Multiple Select jQuery plugin

  8. 8

    How can I extract text from images?

  9. 9

    CSS text-align:center被忽略

  10. 10

    How can we prevent that when I resize my window, my images move using HTML-CSS?

  11. 11

    How to Add a Vertical Line inside a texbox using html and css

  12. 12

    In Puppet, how can I access a variable/attribute inside a defined type?

  13. 13

    How can I use find() on a map inside a vector of maps?

  14. 14

    Buggy CSS animate (transition) a element inside a column?

  15. 15

    Write text inside a div from JavaScript?

  16. 16

    React: Getting the value of text inside a contentEditable div

  17. 17

    How can I set element for entire width of the page? (Android)

  18. 18

    Vue - how can i style an Element-UI datatable?

  19. 19

    how put div center when use float

  20. 20

    How to center contents of an absolute div horizontally

  21. 21

    CSS Positioning of div inside list item

  22. 22

    How can I use jQuery to move multiple instances of a div?

  23. 23

    使用CSS变换在Center Div上进行动画

  24. 24

    How can I change the text in the Wix installer dialog?

  25. 25

    How to parse a text file (CSV) into haskell so I can operate on it?

  26. 26

    How to align form at the center of the page in html/css

  27. 27

    How can automatically wrapped to a new line the text inside an HTML table cell?

  28. 28

    How can I exclude last two child elements with CSS selector?

  29. 29

    How do I mock a method call inside the method I want to test using NUnit?

热门标签

归档