css h1 - only as wide as the text

前端 未结 9 480
情深已故
情深已故 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-24 00:50

    Somewhat like the other suggestions you could use the following code. However, if you do go the margin: 0 auto; route I'd recommend having the margin for the top and bottom of an H1 be set to something other than 0. So, perhaps margin: 6px auto; or something.

    .centercol h1{
        display: inline-block;
        color: #006bb6;
        font-weight: normal;
        font-size: 18px;
        padding:3px 3px 3px 6px;
        border-left:3px solid #c6c1b8;
        background:#f2efe9;
        display:block;
    }
    

提交回复
热议问题