摘要:
margin:10px 5px 15px 20px; 上外边距是 10px 右外边距是 5px 下外边距是 15px 左外边距是 20px 例子 2 margin:10px 5px 15px; 上外边距是 10px 右外边距和左外边距是 5px 下外边距是 15px 例子 3 margin:10px 阅读全文
摘要:
background: linear gradient(to bottom, fe4d3d, fe4d3d); 阅读全文
摘要:
CSS动画 不同浏览器的动画效果 div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; moz animation:mymove 5s infinite; / 阅读全文
摘要:
特殊字符的查看资料地址: http://blog.csdn.net/bluestarf/article/details/40652011 阅读全文
摘要:
css特性 线性渐变的颜色 background: linear gradient(to bottom, fff, fff); webkit background: linear gradient(to bottom, fff, fff); 鼠标点击出现边框 webkit tap highlight 阅读全文
摘要:
web网页制作适应不同的手机屏幕的样式配置 / 适配不同的屏幕的不同样式 / @media only screen and (min width: 320px){ } @media only screen and(min width: 640px){ } @media only screen and 阅读全文
摘要:
/ ! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license / !function(a,b){"object"==typeof module&&"object"==typeof module.expo 阅读全文
摘要:
JAVAScript代码的功能记录 定义HTML的样式: 定义宽度: var width=document.getElementById('con').style.width='500px'; 定义颜色样式 .style.color='red'; 定义高度 .style.height='500px' 阅读全文
摘要:
html+css如何绘制三角形 html代码: <!doctype html CSS Triangle Demo Down Triangle Up Triangle Left Triangle Right Triangle css代码: .down triangle { width: 0; heig 阅读全文
摘要:
prompt("请输入信息:"); 会弹出输入编辑的对话框,可对对话框做相应的处理和编辑; window.open(); 可打开一个window窗口; style.display="none"; 隐藏内容 style.display="block";显示内容 innerHTML(); 一、定义"改变 阅读全文