Showing posts with label css. Show all posts
Showing posts with label css. Show all posts

3.08.2019

Use CSS flexbox for elements to wrap automatically while centered

I learned from this post:
.flex-container-center {
  padding: 0 20px 0 20px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

2.20.2013

Alternating Colors Table Rows Css

Pure CSS Solution for alternating color rows for a table:

table.MyGrid tr:nth-child(even) {
    background:#ECF4FE;
}