skip to Main Content

Html – CSS Flex so much space between rows

We have this HTML and CSS code. This contains a container div with different sizes div children. .cont { background-color: red; width: 1000px; height: 500px; display: flex; flex-wrap: wrap; align-items: flex-start; } .item1 { background-color: orange; width: 100px; height: 110px;…

VIEW QUESTION

Html – Shrink images to fit into nav

I'm trying to fit 3 images into a navigation bar, but I have the intelligence of a salamander and is having some trouble. @font-face { font-family: 'miauzers'; src: url('miauzars.ttf') format('truetype'); } #tophead { font-family: 'miauzers'; width: 100%; text-align: center; }…

VIEW QUESTION

Html – creating card slider sliding individual card by clicking specific button previous or next using javascript

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>my slider</title> <link rel="icon" type="image/x-icon" href="../pages/images/favicon.ico"> <!-- stylesheet --> <style type="text/css"> body { margin: 0px; padding: 0px; } .card-container { width: 100%; overflow: hidden; border: 2.5px solid #000000; margin:…

VIEW QUESTION
Back To Top
Search