I am facing an issue where I want to slightly center text, but whenever I add just 1px of padding-left, it moves to a new line. In my layout, I have 2 columns each occupying 50% width of the screen. One column contains only a photo while the other has a background color with text that I am trying to center.
Below is the CSS code I am using:
.reviews__content {
display:flex;
flex-direction: column;
width: 50%;
justify-content: center;
padding-left:
}