码迷,mamicode.com
首页 >  
搜索关键字:text/css    ( 2049个结果
CSS样式表
样式表: 注释:/*这是注释内容*/ 样式表包括:内联样式表:直接在标签里面写,style属性 内嵌样式表:写在head标签里面,<style type="text/css"> 标签样式... </style> 外部样式表:新建CSS文件放样式表,在html中引用 <link href="o.css ...
分类:Web程序   时间:2016-05-04 17:01:49    阅读次数:157
kendo-------------添加dropDowList
需要引用kendo.js <link type="text/css" href="../css/bootstrap.min.css" rel="stylesheet" /> <link type="text/css" href="../css/kendo/kendo.common.min.css" ...
分类:其他好文   时间:2016-05-04 10:12:56    阅读次数:111
ueditor
1:添加插件包 2:添加文件上传的jar包 3:页面引入ueditor插件 <!-- ueditor --><link type="text/css" href="${root}/js/ueditor1.4.3/themes/default/css/ueditor.css" /><script ty ...
分类:其他好文   时间:2016-05-03 23:30:33    阅读次数:170
跑马灯效果
html: <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>跑马灯</title> <style type="text/css"> body { background: #FFF; } input { background: tr ...
分类:其他好文   时间:2016-05-01 20:29:45    阅读次数:433
图片上传后及时预览
<!DOCTYPE html> <html> <head> <meta content="charset=utf-8" /> <!--设置图片上传后预览的div样式--> <style type="text/css"> *{ float:left; margin:0; } body>div{ wid ...
分类:Web程序   时间:2016-05-01 14:53:29    阅读次数:197
css回忆(一)
1、css的引入方式: a) 在head部分加入<link rel="stylesheet" type="text/css" href="my.css"/>,引入外部的CSS文件。 b) 在head部分加入 <style type="text/css"> div{margin: 0;padding: ...
分类:Web程序   时间:2016-05-01 14:50:25    阅读次数:200
HTML5——将图片拖拽上传
如下图所示: 代码如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #div1{width:200px;height:200px;background:re ...
分类:Web程序   时间:2016-04-29 23:30:33    阅读次数:263
<UL>中<li>标签前编号图片的简单调用
<style type="text/css"> ul li{ list-style-type:none} .men ul{ background:url(http://top.baidu.com/img/icon-num.gif) no-repeat 0px 5px} .men ul li{ pad ...
分类:其他好文   时间:2016-04-25 14:58:03    阅读次数:217
纯js写验证码
<html> <head> <meta name="viewport" content="width=device-width" /> <title></title> <style type="text/css"> .code { background-image: url(code.jpg); f ...
分类:Web程序   时间:2016-04-24 18:45:04    阅读次数:200
div+css 遮罩层
CSS样式部分: <style type="text/css">#loading-mask{ position:absolute; left:0; top:0; width:100%; height:100%; z-index:20000; background-color:gray; } #loa ...
分类:Web程序   时间:2016-04-23 11:44:00    阅读次数:203
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!