How to disable
tags inside
by css?

前端 未结 4 878
日久生厌
日久生厌 2020-12-15 15:28


won\'t let me to display 3 buttons inline, so i need to disable it inside div, and I can\'t just delete them, they are automatically there.

I

4条回答
  •  太阳男子
    2020-12-15 16:24

    I used it like this:

    @media (max-width: 450px) {
      br {
        display: none;
      }
    }
    

    nb: media query via Foundation nb2: this is useful if one of the editor intend to use
    tags in his/her copy and you need to deal with it specifically under some conditions—on mobile for example.

提交回复
热议问题