如何使CSS内容属性中的文本字符串可选?

时间:2014-09-04 14:34:23

标签: html css html5 css3 web

使用CSS内容属性显示的文本无法选择。为什么?

示例:

<!DOCTYPE html>
<html>
<head>
<style>
p:before
{
content:"My name is ";
}
</style>
</head>

<body>
<p> Donald</p>


</body>
</html>

上述代码的输出是:

  

我的名字是唐纳德

现在问题是来自content:"My name is ";的文字我的名字是无法选择的。

如何使其可选择。

0 个答案:

没有答案