how to create inline style with :before and :after

前端 未结 5 1019
时光说笑
时光说笑 2021-01-31 01:19

I generated a bubble chat thingy from http://www.ilikepixels.co.uk/drop/bubbler/

In my page I put a number inside of it

.bubble {
  position: relative;
          


        
5条回答
  •  旧巷少年郎
    2021-01-31 01:48

    I resolved a similar problem by border-color: inherit

    , see:

  • ...
  • li { border-width: 0; } li:before { content: ''; display: inline-block; float: none; margin-right: 10px; border-width: 4px; border-style: solid; border-color: inherit; }

提交回复
热议问题