Flexbox justify content, but not include first item
Simply put, is there a way to justify the content of a flexbox but exclude the first item from this? The easiest way is to take the item out of the flexbox, but I'm just wondering if it's possible to...
View ArticleLast margin / padding collapsing in flexbox / grid layout
I have a list of items that I'm trying to arrange into a scrollable horizontal layout with flexbox.Each item in the container has a margin left and right, but the right margin of the last item is being...
View ArticleResponsiveness for a complete beginner in programming [closed]
I'm a Brazilian who just started programming just for fun and I'm working on an independent project by looking things up online and asking for help from ChatGPT.Currently, I need to implement...
View ArticleWhy height: 100% doesn't work when it is under a parent using flex-grow
I am new to web coding, and met a strange behavior when using flexbox.When a parent is using flex-grow: 1, the child element height: 100% doesn't work.I saw several solutions but doesn't work for me....
View ArticleCSS Flexbox with a component returning TopBar and SideBar and another one...
I am having troubles getting my main content next to the sidebar in a flexbox layout. My TopBar and SideBar components are combined into a single component, so they are returned in a single parent div....
View Articlehow to make 2 different sorted colomns in a form? [closed]
I got a form with 2 catagories of checkboxes.I want to put the first catagorie with 7 divs with checkboxes left andI want to have the second catagory with 3 divs with checkbox inputs right.I've heard...
View Articlecan anyone explain how to make and arrange boxes using css?
enter image description herecss code for making boxes. I'm a beginner. Please can someone tell me what is the css code for making the boxes like in this picture?? have search on yt but still haven't...
View ArticleHow to fix layout messing up when switching screen size [closed]
I am very new to coding made my first html-site today. Started on my laptop but when I moved to my PC the layout was looking all messed up. Is there any way to fix this without going back and...
View ArticleScrollbar issues - html/css and tailwindcss
I want to have a page that consums the full height of the browser window. I have a navbar on top and then the main content is split into a list of cards on the left (which should be scrollable), and a...
View ArticleWhy does my text in tag go off the screen? (HTML, CSS)
I am new to web development and was playing around with HTML and CSS. I used a <p> tag with a bunch of text in it, and it's not fully visible on the screen. I can barely see half a character on...
View ArticleHow can I make a card like this which is responsive in HTML/CSS
I would like to make a card (image 1) which is fully responsive and can support two cards sitting to the left of it for a total of three cards on a website I am building (image 2). I've coded this up...
View ArticleHow to stretch cards to fill entire div with HTML/CSS?
I've created two cards on a site I am building. I would like them to span the entire div but I cannot get them to span the width without their size being giant. Ideally, I would like to make the cards...
View Article4 items per row but with empty space if there is less than 4 items?
I want to know if there is a way to have 4 items per row but not have the rows with <4 items to stretch to fill the space..item-container { display: inline-flex; flex-wrap: wrap; flex-direction:...
View Article3rd column below the 2nd and move to below the 1st
I'm trying to do this :I try flex but I can't find the solution..container {display:flex; flex-wrap: wrap;}.col1 {width: 50%; background-color: #ccc;}.col2 {width: 50%; background-color: red;}.col3...
View ArticleHow can I make Flexbox children 100% height of their parent?
I'm trying to fill the vertical space of a flex item inside a Flexbox..container { height: 200px; width: 500px; display: flex; flex-direction: row;}.flex-1 { width: 100px; background-color:...
View ArticleIs there a way to align a link containing an image and text so that the text...
I am working on a portfolio site and encountered a small problem. I am attempting to create links that have a website logo and some text next to it for my various projects. Since the images are a bit...
View ArticleFlex-direction: row; is not working even though HTML and CSS code is from MDN
I was following along with the MDN page about flexbox and the child elements only arrange as rows if I give the child element flex: 200px;Shouldn't it arrange in rows without adding any CSS to the...
View ArticleMy flex-boxes are not aligning properly / overlapping
I'm working on a section of a basic website that requires an image and text on the left and other smaller boxes on the right side.The left side is supposed to take 60% of the available screen and the...
View ArticleHow can I make a responsive CSS layout with cards, keeping the top and bottom...
I have a layout where I want to display multiple "cards." Each card will consist of 3 sections laid out vertically. The top section will contain text that will be different lengths for different cards,...
View ArticleWoocommerce: show 2 columns on mobile for related products
I'm recently using the Blockify Theme for Wordpress and am using Woocommerce.I would like to show 2 columns for the related products on mobile.Here's an example URL:...
View Article