skip to Main Content

Css – justify center not in center position

i am creating a simple stepper component in vue. I have been able to achieve desired fucntionality but the alignment goes to left even after applying justify-content: center below is my code https://codesandbox.io/s/awesome-sky-pj9p5x <template> <div class="flex justify-center full-width" style="border: 1px">…

VIEW QUESTION

Html – the right way to do this with BEM+ SASS

I am using the BEM method together with SASS and I have a big doubt. I have this HTML <section class="section1"> <p class="section1__tittle"></p> </section> <section class="section2"> <p class="section2__tittle"></p> ... </section> This CSS : .section1{} .section2{} .section1__tittle, .section2__tittle{ // as both…

VIEW QUESTION

Css – ripple effect with transition

i'm trying to create simple ripple effect. When i add classes to element newClick i expected ripple effect. Got troblued because appending class is instantly and i dont see the effect. Could you help me? const button = document.querySelector('.button'); const…

VIEW QUESTION
Back To Top
Search