Can I use this (custom elements, custom attributes) on (for examples) IE 9 with this CSS? Is this valid? What are the negatives?
I want to have more readable code... without divs.
HTML
<row center>
  <column number="6">A</column>
</row>
CSS / LESS
row {
  background: #444;
  display: flex;
  &[center] {
    justify-content: center;
  }
  column {
    background: #222;
    color: #fff;
    &[number="6"] {
      padding: 1rem;
      width: 50%;
    }
  }
}
 
     
     
     
    