python 使用css 需要导入什么模块
2个回答
2017-01-07 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
python 使用css 需要导入cssutils,最新版本是1.0.1。
具体使用方法如下:
1、执行以下命令安装最新版本的cssutils
easy_install cssutils
2、在代码中用import命令导入
import cssutils
3、使用cssutil内部一些选择器等的方法
指定命名空间
@namespace html "http://www.w3.org/1999/xhtml";
设置背景色为白色
@variables { BG: #fff }
html|a { color:red; background: var(BG) }'''
sheet = cssutils.parseString(css) 开始解析css
sheet.encoding = 'ascii'
sheet.namespaces['xhtml'] = 'http://www.w3.org/1999/xhtml'
sheet.namespaces['atom'] = 'http://www.w3.org/2005/Atom'
sheet.add('atom|title {color: #000000 !important}')
sheet.add('@import "sheets/import.css";')
print sheet.cssText 打印
具体使用方法如下:
1、执行以下命令安装最新版本的cssutils
easy_install cssutils
2、在代码中用import命令导入
import cssutils
3、使用cssutil内部一些选择器等的方法
指定命名空间
@namespace html "http://www.w3.org/1999/xhtml";
设置背景色为白色
@variables { BG: #fff }
html|a { color:red; background: var(BG) }'''
sheet = cssutils.parseString(css) 开始解析css
sheet.encoding = 'ascii'
sheet.namespaces['xhtml'] = 'http://www.w3.org/1999/xhtml'
sheet.namespaces['atom'] = 'http://www.w3.org/2005/Atom'
sheet.add('atom|title {color: #000000 !important}')
sheet.add('@import "sheets/import.css";')
print sheet.cssText 打印
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询