标签: 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 ";的文字我的名字是无法选择的。
content:"My name is ";
如何使其可选择。