Как создать текст рядом с картинкой - PullRequest
0 голосов
/ 10 сентября 2018

введите описание ссылки здесь Я делаю это

Кажется, ничего не работает. Я пытаюсь поместить это рядом с этим изображением, и оно не работает, пожалуйста, помогите!

        <div>
             <img src="https://s3.amazonaws.com/ebaumsworld.prod/uploads1517445898749-old-school-Runescape-mobile-2.jpg" width=500px/>
<p>
Players ALWAYS need food. Skip cooking a lot of other foods and just level yourself up to the point that you can cook fish. Save all fish lower than lobsters for yourself, and when you are able to cook and catch lobsters, do NOTHING ELSE for several days. Before you know it, you will be able to catch and cook swordfish. Sell lobsters and swordfish and keep a few for yourself. Whenever you get up to the point that you can catch and cook sharks, your fortune is made. They sell for at least 1k each.
</p>

1 Ответ

0 голосов
/ 10 сентября 2018

Вы можете перемещать изображение с помощью свойства CSS.

img {
  float: left;
}

p.offset {
  margin-left: 170px;
}
<div>
  <img src="https://via.placeholder.com/160x150" />
  <p class='offset'>

    Players ALWAYS need food. Skip cooking a lot of other foods and just level yourself up to the point that you can cook fish. Save all fish lower than lobsters for yourself, and when you are able to cook and catch lobsters, do NOTHING ELSE for several days.
    Before you know it, you will be able to catch and cook swordfish. Sell lobsters and swordfish and keep a few for yourself. Whenever you get up to the point that you can catch and cook sharks, your fortune is made. They sell for at least 1k each.
  </p>
...