0

The whole div remains on left, I tried withe below but no luck

.captionhome {
  width: 600px;
  padding: 10px;
  border: 5px solid black;
  margin: 50px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
<div class="captionhome" style="text-align: center;">WARNING: This product contains nicotine. Nicotine is an addictive chemical.</div>

enter image description here

G-Cyrillus
  • 101,410
  • 14
  • 105
  • 129
user580950
  • 3,558
  • 12
  • 49
  • 94

1 Answers1

1

Your captionhome has a set width. Either change that to 100% or add

margin: 0 auto;
Serg Chernata
  • 12,280
  • 6
  • 32
  • 50