Answers for "Move sidebar to TOP on mobile"

CSS
0

Move sidebar to TOP on mobile

.col-full {
    position: relative;
  }

div#primary {
    float: left;
    width: 100%;
    margin-top: 100%;
}

div#secondary {
    float: left;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
}
Posted by: Guest on April-15-2022

Browse Popular Code Answers by Language