Is it okay/safe to use percentage values higher than 100% css?

Viewed 34

Recently I found myself defining an elements height to height 100%, like so:

#parent{
 height: 500px;
 background: red;
}

.child{
 height: 110%;
 background: blue;
}

So my question is, is it okay and safe to define css height and width values higher than 100%? height:

0 Answers
Related