css h1 - only as wide as the text

前端 未结 9 481
情深已故
情深已故 2020-12-24 00:08

I have an H1 style for my site:

.centercol h1 {
    color: #006bb6;
    font-weight: normal;
    font-size: 18px;
    padding:3px 3px 3px 6px;
    border-lef         


        
9条回答
  •  天涯浪人
    2020-12-24 00:36

    This is because your

    is the width of the centercol. Specify a width on the

    and use margin: 0 auto; if you want it centered.

    Or, alternatively, you could float the

    , which would make it only exactly as wide as the text.

提交回复
热议问题