Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css make a cell twice as big flexbox

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.child.featured {
  grid-row-end: span 2;
}


/* non-essential decorative styles */
.container {
  padding: 10px;
  border: 2px solid gray;
  background-color: lightgray;
  height: 50vh;
}
.child {
  background-color: deepskyblue;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
}
Comment

PREVIOUS NEXT
Code Example
Css :: vendor css 
Css :: how to give rgba in tailwind 
Css :: pixel css 
Css :: center 
Css :: blurred background 
Css :: css after before 
Css :: css border sides 
Css :: beautiful scrollbar css 
Css :: circle progress bar css 
Css :: hover on father elemet activates a child element css 
Css :: flex property in css 
Css :: css loader 
Css :: css3 app basic 
Css :: <i class="fa-solid fa-quote-left"</i 
Css :: progress bar with width gradient 
Css :: css registry component 
Css :: Creating Nike logo with CSS 
Css :: css black neomorphism 
Css :: change button color ultimate member plugin 
Css :: mvc dynamic css 
Css :: css convert td to tr 
Css :: lier class et css 
Css :: if child elemnt is hovered do changes to the container css 
Css :: Creating Hashnode logo with CSS 
Css :: CSS - The Descendant Selectors 
Css :: writting css with twin.macro and styled components 
Css :: beautiful Cyrillic fonts 
Css :: if else in golang 
Css :: how to open a file in vscode from terminal 
Css :: how long since 1993 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =