With a normal screen size, it should look like this
<img id="pic_1" style="padding-right: 50px;" src="ссылка" /> <img id="pic_2" style="padding-left: 50px;" src="ссылка" />
When I compress the screen, it should look like this (according to the result when compressing, the pictures should be centered):
@media screen and (max-width: 980px) { #pic_1{ display: table-cell; text-align: center; } #pic_2{ display: table-cell; text-align: center; } }
Does not work. Please help me figure out what I'm doing wrong.