Can I have different colored left and top borders in CSS with straight join?

后端 未结 4 1490
Happy的楠姐
Happy的楠姐 2020-12-05 07:15

I would like to have a border that is 4px thick pink on the left and 1px grey elsewhere:

border: 1px solid #E5E5E5;
b         


        
4条回答
  •  一生所求
    2020-12-05 07:38

    this should work but requires extra markup:

    .outer {
        border: 1px solid #E5E5E5;
        border-left: 0;
    }
    
    .inner {
        border-left: 4px solid #F24495;
    }
    

    and

    ...

提交回复
热议问题