I am struggling to make the wrapper class responsive. I have searched everywhere for answers but haven't found a solution yet. Hopefully, I can find some help here:
.jumbotron {
overflow: hidden;
background-color:whitesmoke;
opacity:1.0;
}
.goodat{
color: #ffc107;
text-align:center;
}
.goodat:hover{
color:#F64672;
}
.wrapper {
margin: 40px auto;
width: 2500px;
height: 500px;
}
.wrapper::before, .wrapper::after {
content: "";
display: table;
clear: both;
}
.wrapper .panel {
position: relative;
margin: 50px 20px;
padding: 0 20px 20px;
overflow: hidden;
float: left;
width: 270px;
height: 450px;
text-align: center;
background: #F1F1F1;
border: 1px solid #30bb57;
box-sizing: border-box;
transition: border 200ms ease;
cursor: pointer;
}
// Other CSS properties…
</div>
I have attempted using multiple CSS properties to modify the responsiveness of the wrapper class but have not been successful. No error messages are displayed, just unable to achieve the desired results.