会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zylzh
博客园
首页
新随笔
联系
订阅
管理
2024年3月1日
三角形
摘要: $top: -15px; $left: 50%; &:after { position: absolute; top: $top; left: $left; content: ' '; z-index: 1; border: 8px solid transparent; border-bottom:
阅读全文
posted @ 2024-03-01 10:42 zy-lzh
阅读(13)
评论(0)
推荐(0)
2023年12月28日
flex布局设置justify-content: space-between后最后一行两端对齐解决方法
摘要: display: grid; grid-template-columns: repeat(auto-fill, 100px); justify-content: space-between; gap: 10px;
阅读全文
posted @ 2023-12-28 16:40 zy-lzh
阅读(234)
评论(0)
推荐(0)
2023年11月8日
fixed居中
摘要: position: fixed; bottom: 10rpx; width: 80%; left: 50%; transform: translate(-50%, -50%); left:0; right:0;
阅读全文
posted @ 2023-11-08 15:39 zy-lzh
阅读(29)
评论(0)
推荐(0)
2023年8月8日
table边框
摘要: table { width: 50vw; margin: 50px; //border border-top: 1px solid gray; border-left: 1px solid gray; border-collapse: collapse; th, td { text-align: c
阅读全文
posted @ 2023-08-08 16:28 zy-lzh
阅读(12)
评论(0)
推荐(0)
2023年7月11日
11
摘要: <template> <div class="hello"> <h1>{{ msg }}</h1> </div> </template> <script> export default { name: 'HelloWorld', data() { return { msg: '' } }, moun
阅读全文
posted @ 2023-07-11 22:41 zy-lzh
阅读(22)
评论(0)
推荐(0)
2023年6月13日
grid
摘要: .imgList { display: grid; justify-content: space-between; grid-template-columns: repeat(auto-fill, 100rpx); grid-gap: 10px; .item { width: 100rpx; hei
阅读全文
posted @ 2023-06-13 10:31 zy-lzh
阅读(55)
评论(0)
推荐(0)
2023年5月23日
element table
摘要: ::v-deep .el-table__fixed-right { height: 100% !important; //设置高优先,以覆盖内联样式 } ::v-deep .el-table__fixed { height: 100% !important; //设置高优先,以覆盖内联样式 }
阅读全文
posted @ 2023-05-23 11:33 zy-lzh
阅读(9)
评论(0)
推荐(0)
2023年3月31日
pdf和ppt页数和xlsxStyle jszip3.0兼容
摘要: async countPptxSlides(file) { const zip = new JSZip() const zipFile = await zip.loadAsync(file) const presentationEntry = Object.values(zipFile.files)
阅读全文
posted @ 2023-03-31 17:11 zy-lzh
阅读(126)
评论(0)
推荐(0)
2023年2月15日
宝塔
摘要: location /api/ { #这里填的是你自己的域名,即把以/api的请求转发到下面你配置的ip或者域名上面 #这里的端口号是你后端监听的端口号, #用这个栗子const res = await axios.post("http://sczh.xyz/api/article/comment",
阅读全文
posted @ 2023-02-15 14:29 zy-lzh
阅读(33)
评论(0)
推荐(0)
2023年1月11日
查询网站是否更新
摘要: <template> <div id="app"> <router-view /> </div> </template> <script> export default { name: 'App', data() { return { previousTimeTag: '' } }, created
阅读全文
posted @ 2023-01-11 17:15 zy-lzh
阅读(56)
评论(0)
推荐(0)
下一页
公告