#web dev htmlcss

4 messages · Page 1 of 1 (latest)

willow mist
#

can anyone help me center this box I’ve made?

tardy horizon
#

When you have an element with a fixed width, you can center it by adding auto margins to the left and right

#
.container {
  margin-left: auto;
  margin-right: auto;
}```
willow mist
#

It worked thank you!