09 2020 档案
摘要:有没有经常遇到一些样式每次写都要用百度呢?我收集了一些我平时经常要用到的但又总是记不住的样式。 一、设置input 的placeholder的字体样式 input::-webkit-input-placeholder { /* Chrome/Opera/Safari */ color: red; }
阅读全文
摘要:display: table-cell;实现并列div高度保持一致 <!DOCTYPE html> <html> <head> <title>并列div高度保持一致</title> <style type="text/css"> div{ border:2px solid red; width: 5
阅读全文
摘要:用定时器setInterval实现几秒后页面自动跳转的另一个页面 <!DOCTYPE html> <html> <head> <title>用定时器实现几秒后页面自动跳转的另一个页面</title> <script src="/Scripts/jquery-1.8.3.min.js" type="t
阅读全文
摘要:<!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> div { background: none; border: 0; box-sizing: border-box; margin: 1em; padding:
阅读全文
摘要:伪类随着浏览器窗口大小变更,改变宽度(resize),伪类样式的更改 css .plan_wrapper .plan_com:not(:last-child)::after{ content:''; width:400px; height:1px; border-bottom:2px dashed
阅读全文
摘要:background:url(/images/cancel.png)no-repeat 13px center,linear-gradient(to bottom, #e7b957, #f28413); 注意点:1.渐变属性与图片属性中间用逗号隔开2.图片属性要在渐变属性之前 此外,backgrou
阅读全文