How to Place Three Paragraphs Next to Each Other With CSS - VS CODE
Hello everyone, welcome to this video. In this video, I will show you how to place three paragraphs next to each other using CSS on Visual Studio Code. Also, you will learn how to place three images under the paragraphs and place them next to each other. First, you will have to put the paragraphs inside of a container. Then, set the display of the container to display: grid;
then add three columns, grid-template-columns: auto auto auto; after that, your paragraphs will be placed next to each other. If you want to add images, simply place the image tags inside of the p tags. then you will be able to set the display of images to display:block; then, set margin-left:auto; and margin-right: auto; Also, add height and width to the images.
chapters:
0:00 HTML
0:33 Placing the Paragraphs
2:50 Placing Images Optional
#css #paragraphs #grid