bootstrap 4 animate column width change

后端 未结 2 569
悲哀的现实
悲哀的现实 2021-02-04 08:24

I have two columns like this:

2条回答
  •  北荒
    北荒 (楼主)
    2021-02-04 08:52

    I changed the colmn size by using column sizes provided by Bootstrap. For example col-2 to col-1 Then I adjusted the transition to only target the specific type

    .row [class*='col-'] {
        transition: flex 0.5s ease-in-out, max-width .5s ease-in-out;
    }
    

提交回复
热议问题