How to center on the same \"line\" two div blocks?
First div:
You can do this in many way.
- Using
display: flex
#block_container {
display: flex;
justify-content: center;
}
Copyright © All Rights Reserved.
- Using
display: inline-block
#block_container {
text-align: center;
}
#block_container > div {
display: inline-block;
vertical-align: middle;
}
Copyright © All Rights Reserved.
- using
table
Copyright © All Rights Reserved.