opacity: 0.5. 0-1 透明度
cursor: pointer;手指
clear:both 清楚浮动
我是医生不是人
文本内容超出框
word-wrap:break-word;
word-break:break-all;
overflow: hidden;
前后端时间格式统一
{{ row.date|date:"Y-m-d H:i:s" }}
去除默认样式,右下角的可拉伸
input,button,select,textarea{outline:none}
textarea{resize:none}
css
点上去变成小手形状
style="cursor: pointer"
修改图片弧度 默认是0
border-radius:15px
使用onclick跳转到其他页面/跳转到指定url
☆如果是本页显示可以直接用location,方法如下:
①onclick="javascript:window.location.href='URL'"
②onclick="location='URL'"
③onclick="window.location.href='URL?id=11'"
☆如果页面中有frame可以将在location前面添加top.mainframe.frames['right_frame'].location
text-decoration: none
CSS文字修饰为无;一般用于设置清除超链接的默认下划线: 如a链接的下划线等。。。