-2

我有一个将文本附加到<li>元素的文本字段,我希望它附加到 li 元素的文本以非常具体的方式排列。我想也许可以添加一个小图像并使用 css 使该图像不可见。有没有更传统的方法?

I want to be able to have text like this then(invisible element)
makes the text continue here(invisible element)
and here.
4

1 回答 1

1

当您将文本弹出到该元素中时,还要向其添加一个 CSS 类

并定义css类

.icon{

background:url(my_desired_image.png) no-repeat size;
// other styles 
}

然后每当元素从字段中获取文本时,它将添加类,并且类将同时显示她的图像

喜欢

I want to be able to have text like this then <i class="icon"></i>
makes the text continue here< i class="icon"></i>
and here.

<i class="icon"></i>

是你的隐形元素

于 2013-03-05T05:45:52.267 回答