Why is php storm complaining about this CSS

In the followinf, PHPStorm complains about "align-items: space-between;"

which works perfectly and does exactly what I want.  Am I missing something?


div.divbody{
height:80%;
margin:0;
display:flex;
flex-direction: column;
justify-content: space-around;
align-items: space-between;
background:#999;
padding-left:3%;
padding-right:3%;
}


Thanks,
Dave

0
1 comment

Where does this syntaax come from? It doesn't pass validation at https://jigsaw.w3.org/css-validator/validator, and neither https://developer.mozilla.org/en-US/docs/Web/CSS/align-items nor https://drafts.csswg.org/css-flexbox-1/#propdef-align-items mention space-between as a valid align-items value

0

Please sign in to leave a comment.