如何使用css内容显示图像?

I have the following code, the code is showing some info on a page. At the line with content it is showing a text on my website but I want to put an image near that text, it seems so hard for me

 {  
    "id": 85,
    "parent": null,
    "created": "2019-02-06",
    "modified": "2019-02-06",
    "content": "Vielen Dank. Funktioniert immernoch perfekt!!!",
    "pings": [],
    "creator": 6,
    "fullname": "LinusKniepmann",
    "profile_picture_url": "./img/ppl/3.jpg",
    "created_by_admin": false,
    "created_by_current_user": false,
    "upvote_count": 3,
    "user_has_upvoted": false,
    "is_new": true
 },

So I want to put an image near the

"content": "Vielen Dank. Funktioniert immernoch perfekt!!!"

Are there any ways to input the image inside the content code?

  background-image: url("images/2019-01-10_093A45.jpg");

  background-repeat: no-repeat;

  width: 180px; /* Width of your image */
  
  height: 236px;

  top: 100px; /* Customize to your position preference */
  
  left: 100px;

</div>