Need help with Pomodoro Clock

I can’t figure out how to move the break <div> to the right side of the session <div> .Here is my CodePen [

Add display:inline-block; To both of your divs

Still doesen’t work here is the

Oops i’m sorry i didn’t see that you’re working with bootstrap um you gonna need to remove that div that wraps your session and break divs <div class="col-sm-12"> and add col-sm-6 to both your other divs so they will be <div class="session col-sm-6"> <div class="break col-sm-6"> and in your css adjust it to this

.session {
border: 3px solid skyblue;
}
.break{
border: 3px solid silver;
}

1 Like

THANKS a LOT :smile: