I have a little problem with margin top for children element.
CSS:
body {
height: 960px;
}
.breadcrumbs {
position: relative;
background-color: #eee;
height: 10%;
}
.name {
color: #000;
margin-top: 50px;
}
Why it doesn't work? Class .name sticky on top.
Thanks in advance.