我想在python中找到导入的CSS文件中出现的宽度数。
我正在使用 file() 函数
css = open("/Users/john/Work/html/Ribbon/header.css")
print(css.read())
#output
#back {
width: 680px;
height: 280px;
border: 2px solid #000;
margin: 100px auto;
background: url("background.png");
position: relative;
}
#back ul {
margin-top: 115px;
margin-left: 80px;
width: 476px;
height: 39px;
border: 2px solid #b4c5cf;
background: #f3f8fa;
}
#back #topborder {
background: url("top_border.png");
position: absolute;
width: 100%;
height: 23px;
}
#back #bottomborder {
background: url("bottom_border.png");
width: 100%;
height: 23px;
bottom: 0;
position: absolute;
}
我是python新手,请提出更多方法。请帮助我,如何进一步进行。
谢谢。