What do you want to save?
Add Code snippet
New code examples in category CSS
-
-
Dr Helen 2021-08-27 17:54:01
how to create a card using css
.card { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); transition: 0.3s; width: 15%; height: 200px; background: white; display: flex; justify-content: center; align-items: center; border-radius: 5%; } .card:hover { cursor: pointer; ... Add solution -
Afrosamurai 2021-08-27 17:40:02
how to zoom out picture from css
/*Zoom on hover*/ <style> .zoom { padding: 50px; background-color: green; transition: transform .2s; /* Animation */ width: 200px; height: 200px; margin: 0 auto; } .zoom:hover { transform: scale(1.5); /* (150% zoom)*/ } </style>... Add solution -
Dryman 2021-08-27 17:12:01
ajax call to load a page on scrolling
$(document).ready(function(){ $(window).scroll(function(){ var position = $(window).scrollTop(); var bottom = $(document).height() - $(window).height(); if( position == bottom ){ var row = Number($('#row').val()); var allcount = Number(... Add solution -
Mobius Pizza 2021-08-27 12:16:01
css []
div[class*="test"] { background: #ffff00; } Add solution -
Elias Schmitt 2021-08-27 12:09:03
css last child
li:last-child { background-color: lime; } Add solution -
Momal 2021-08-27 11:30:01
tailwind css image grid
########### Responsive Grids ############### <div class="flex flex-wrap"> <div class="w-full sm:w-1/2 md:w-1/3 lg:w-1/4 xl:w-1/6 mb-4 bg-gray-500"></div> <div class="w-full sm:w-1/2 md:w-1/3 lg:w-1/4 xl:w... Add solution -
Best helpers
Ranking is empty