Search
 
SCRIPT & CODE EXAMPLE
 

CSS

3 column responsive grid css

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /*fraction*/
}

.section {
  border: 1px solid;
}

@media (max-width: 768px) { /*breakpoint*/
  .container {
    grid-template-columns: none;
  }
}
Comment

PREVIOUS NEXT
Code Example
Css :: gradient over image css 
Css :: circle background image css 
Css :: Set table cellpadding and cellspacing in CSS 
Css :: how to show ... after some long chars js html h1 
Css :: css 2 <p next to each other 
Css :: css display none transition 
Css :: clamp margin 
Css :: send mails from lampp form localhost 
Css :: box shadow border 
Css :: how to write remark in css 
Css :: change color to white svg with filter 
Css :: text outline css 
Css :: how to write firefo specific css 
Css :: dotted underline css 
Css :: font semi bold css 
Css :: apply color tint to image 
Css :: ssh: connect to host 165.22.132.219 port 22: Connection refused 
Css :: comfirm before delete 
Css :: Adding gradient to text color 
Css :: awesome font google icon colored css 
Css :: before content from attribute 
Css :: how to evenly space icons in a div css 
Css :: mat stepper custom css 
Css :: center text html css position fixed 
Css :: add padding to scrollbar 
Css :: css animation-iteration-count 
Css :: Define Or Attach Font Face In HTML CSS Web Page 
Css :: css darkmode 
Css :: line in css div 
Css :: how to make background image fit to screen 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =