gpt4 book ai didi

html - 将行添加到 style.css

转载 作者:行者123 更新时间:2023-11-28 02:48:50 25 4
gpt4 key购买 nike

所以我想在我的站点中创建 200 个页面,为此我想在 style.css 中添加几行。我想在文件末尾添加以下行

.wordpress
width: 100%
position: relative
font-size: 22px
color: #1a1a1a
font-weight: 600
min-height: 297px
line-height: 22px
background: url(../images/wordpress.png) no-repeat left top

我想用脚本替换文件名。有人可以指导我该怎么做吗?我尝试了以下技巧,但它确实有效

for i in $(cat list1.txt) ; do echo  .$i{\ width: 100%;\ position: relative;\ font-size: 22px;\ color: #1a1a1a;\        font-weight: 600;\ min-height: 297px;\ line-height: 22px;\ background: url(../images/$i.png) no-repeat left top;\} >>  list3.txt ; done

还有其他方法吗?我在 list1.txt 文件中有所有文件名

最佳答案

我稍微修改了你的代码。现在它应该可以工作了:

for i in $(cat list1.txt) ; do 
echo ".$i{
width: 100%;
position: relative;
font-size: 22px;
color: #1a1a1a;
font-weight: 600;
min-height: 297px;
line-height: 22px;
background: url(../images/$i.png) no-repeat left top;
}" >> list3.txt ; done;

你应该有这样的 list1.txt:

wordpress
joomla

(由新行分隔且没有 .png)

关于html - 将行添加到 style.css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46774285/

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