哪有什么岁月静好,不过是有人替你负重前行!
摘要: 一. overflow:hidden 溢出隐藏 给一个元素中设置overflow:hidden,那么该元素的内容若超出了给定的宽度和高度属性,那么超出的部分将会被隐藏,不占位。 /*css样式*/ <style type="text/css"> div{ width: 150px; height: 阅读全文
posted @ 2021-12-19 17:37 longfei825 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 学习思维导图: 标签导图 HTML+CSS导图 阅读全文
posted @ 2021-12-16 16:23 longfei825 阅读(390) 评论(0) 推荐(0) 编辑
摘要: DIV+CSS命名参考表: 阅读全文
posted @ 2021-12-16 11:44 longfei825 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 1、CSS语法和注释规则: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS样式</title> <style type="text/css"> <!-- css样式:选择符和声明构成。声明(span) 阅读全文
posted @ 2021-12-10 09:27 longfei825 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 1、<head>标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>测试标题</title> </head> 2、<ul>无序列表标签,用于在效果中定义一个无序列表。需要内镶<li>标签一起使用。 <!DO 阅读全文
posted @ 2021-12-07 18:01 longfei825 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 目标页面:通过建立本地服务器,通过ip地址加端口号访问页面。 ip地址:http://127.0.0.1:8090/xiaohu 1、首先新建django项目: 2、新建index.html文件。 3、在index.html里面输入下面代码: <!DOCTYPE html> <html lang=" 阅读全文
posted @ 2021-12-06 16:29 longfei825 阅读(72) 评论(0) 推荐(0) 编辑
摘要: test.html代码: <html lang="en"> <head> <meta charset="UTF-8" /> <title>测试bs4</title> </head> <body> <div> <p>百里守约</p> </div> <div class="song"> <p>李清照</ 阅读全文
posted @ 2021-11-29 11:09 longfei825 阅读(53) 评论(0) 推荐(0) 编辑
摘要: #爬取第一页图片 import os import requests from lxml import etree dirName = 'GirLslib' #创建文件夹 if not os.path.exists(dirName): #如果文件夹Girlslib不存在,就创建。 os.mkdir( 阅读全文
posted @ 2021-11-17 11:19 longfei825 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 比如这段代码现在出现NameError: name ‘requests’ is not defined from bs4 import BeautifulSoup words = ["旗帜", "计算机", "乾坤", "理工"] for word in words: r = requests.ge 阅读全文
posted @ 2021-11-14 10:14 longfei825 阅读(1598) 评论(0) 推荐(0) 编辑
摘要: 极其有可能你把一组dict,用逗号相隔了例如{“id”,id}应该为{“id”:id} 阅读全文
posted @ 2021-11-14 10:06 longfei825 阅读(439) 评论(0) 推荐(0) 编辑