how to create inline style with :before and :after

前端 未结 5 1018
时光说笑
时光说笑 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:49

    You can't. With inline styles you are targeting the element directly. You can't use other selectors there.

    What you can do however is define different classes in your stylesheet that define different colours and then add the class to the element.

提交回复
热议问题