css h1 - only as wide as the text

前端 未结 9 482
情深已故
情深已故 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:38

    align-self-start, align-self-center... in flexbox

    .centercol h1{
        background: #F2EFE9;
        border-left: 3px solid #C6C1B8;
        color: #006BB6;
        display: block;
        align-self: center;
        font-weight: normal;
        font-size: 18px;
        padding: 3px 3px 3px 6px;
    }
    

提交回复
热议问题