-2

我知道有几个例子,但我无法完成我需要的。我需要从字段中获取文本并将其转换为类似于 word 中的大纲视图。这可以实现吗?任何事情都会有所帮助。如果您需要更多信息,我需要在 ServiceNow 上创建它,但 CSS/Javascript/HTML 中的任何内容都可以传输到它。谢谢!

4

1 回答 1

0

在 MS Word 大纲视图中意味着概述一个选择:在 css 中我们可以实现如下:

HTML:

<div>This is some text to be outlined</div>

CSS:

::selection {
    color: white;
    background: blue;
}
于 2015-02-17T11:17:23.827 回答