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

问题描述 投票:-1回答:1

我有以下的代码,该代码显示在页面上的一些信息。在与它显示在我的网站文字内容的行,但我想提出一个图像附近的文本,似乎很难对我来说

 {  
    "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
 },

所以,我希望把附近的图像

“内容”:“谢谢你仍然完美!”。

有没有输入任何方式来处理内容代码中的形象呢?

javascript php html css html5
1个回答
0
投票

  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;
© www.soinside.com 2019 - 2024. All rights reserved.