gpt4 book ai didi

php - 后端 : Is it possible to fetch image locatiom in css background(url) from database?

转载 作者:行者123 更新时间:2023-11-28 01:20:43 24 4
gpt4 key购买 nike

我已将我的数据扔到我的 Blade 上。我正在使用内联 CSS。在这种情况下,我需要 background: url(..)而不是 <img> .在浏览器上,当我检查并打开新文件中的 img 时,它会打开,但 css 无法解析和显示它。我应该给它更多的位置吗?

目前,我正在尝试这个。

<div class="row profile-cover" style="margin: 0; 
background: url('{{$userDetails->profile_img}}')">

在哪里

$userDetails->profile_img= gallery/client4/avatar_1530513317_1532258485.jpg;

最佳答案

你可以这样写。希望这会解决您的问题

<div class="row profile-cover" style="margin: 0; background: url({{ asset($userDetails->profile_img) }})">

或者

<div class="row profile-cover" style="margin: 0; background-image: url({{ asset($userDetails->profile_img) }})">

关于php - 后端 : Is it possible to fetch image locatiom in css background(url) from database?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51518856/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com