skip to Main Content

Transform Issue With Bootstrap Card-Twitter bootstrap

I have such a bootstrap card: .task__content { transition: transform 0.2s linear 0s; transform: scaleY(0); transform-origin: top center; } .task:hover .task__content { transform: scaleY(1); } <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"/> <div class="task card" data-is-complete="incomplete"> <div class="task__toolbar card-header d-flex align-items-center py-2"> <!--task checklist-->…

VIEW QUESTION

Simple HTML and JS login page not working, unable to fetch email and password fields on button click-Twitter bootstrap

<!doctype html> </html> <head> <title> </title> <link href="../assets/css/bootstrap.css" rel="stylesheet"> <link href="sigin-style.css" rel="stylesheet"> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> </head> <body> <div class="container-fluid px-1 px-md-5 px-lg-1 px-xl-5 py-5 mx-auto"> <div class="card card0 border-0"> <div class="row d-flex"> <div class="col-lg-6"> <div class="card1 pb-5"> <div class="row"> </div>…

VIEW QUESTION
Back To Top
Search