[Solved] how to positon two contents left and right using css


use css float property

float-left {
    float: left;
}

float-right {
    float: left;
}

or you can use flex-box too.

1

solved how to positon two contents left and right using css