Reputation: 51
I am working on a web resume and have a profile and experience div classes which are dynamically resized using bootstrap.
See here for a codepen: https://codepen.io/rxestrella/pen/EvORmp
The problem is with the white section under the profile. I have tried adding display: flex;
to the profile class but this messes with the bootstrap sizing.
I have also tried
height:100%;
and margin:0; padding:0;
Upvotes: 1
Views: 91
Reputation: 4192
Add this css part if you need changes in responsive part add media query
like following codepen link.
.resume-wrapper {
display:flex;
flex-direction:row;
}
For responsive.
@media screen and (max-width:768px){
.resume-wrapper {
display:flex;
flex-direction:column;
}
}
Upvotes: 2