一、简介: css全称为级联样式表(Cascading Style Sheet),通常又称为风格样式表(Style Sheet),是用来进行网页风格设计的。 css优点: css的三大特性: 二、核心内容: 三、语法结构: 基本语法: <style type="text/css"> 选择器 { 属性 ...
分类:
Web程序 时间:
2016-07-21 19:56:23
阅读次数:
194
<!DOCTYPE html> <html> <head> <style type="text/css"> div#container{width:500px} div#header {background-color:#99bbbb;} div#menu {background-color:#ff ...
分类:
Web程序 时间:
2016-07-20 17:40:40
阅读次数:
215
在网页上实现时钟功能,效果如右图所示: 运用到的关键技术有:css3中的旋转、旋转基点设置 旋转:transform:rotate(*deg) 旋转基点:transform-origin: x轴偏移 y轴偏移 样式代码: <style type="text/css" id="style"> #clo ...
分类:
Web程序 时间:
2016-07-20 17:29:52
阅读次数:
305
jqGrid整理 PS:JqGrid 官方 API 点我 我的笔记: 一、 jqGrid的加载。 1.引用相关头文件 引入CSS: <link href="Scripts/jquery-ui-1.8.1.custom.css" rel="stylesheet" type="text/css" /> ...
分类:
其他好文 时间:
2016-07-20 17:29:21
阅读次数:
231
<html> <head> <style type="text/css"> .div2{ font-size:16px; color:orange; } .div3{ font-size:20px; color:blue; } <style> <script type="text/javascrip ...
分类:
编程语言 时间:
2016-07-19 17:01:33
阅读次数:
159
运行环境:WAMP/XAMPP搭建的本地服务器。 预备知识:HTML + PHP的用户交互和表单,变量传递;上篇简介的Javascript类对象和Ajax技术。 由于生成的页面太丑,自行搜索了点CSS知识。稍微美化了一丢丢丢,前端只上代码不注释。 <style type="text/css"> bo ...
分类:
Web程序 时间:
2016-07-19 09:19:41
阅读次数:
221
<!-- 引入时间插件 --><link href="__PUBLIC__/datetimepicker/jquery-ui-1.9.2.custom.min.css" rel="stylesheet" type="text/css" /><script type="text/javascript" ...
分类:
其他好文 时间:
2016-07-18 02:39:10
阅读次数:
189
<div class="box"> <div style="width: 100px;height:150px;"> 解析:本题主解析:本题主解析:本题主 </div> </div> <style type="text/css"> .box { display: flex; align-items: ...
分类:
其他好文 时间:
2016-07-15 20:03:38
阅读次数:
118
源代码: <!DOCTYPE html><html><head> <title></title> <meta charset="utf-8"> <style type="text/css"> body{transform-style: preserve-3d; background-image: r ...
分类:
Web程序 时间:
2016-07-15 00:24:59
阅读次数:
181
html代码: <!DOCTYPE HTML><html lang="en-US"><head> <meta charset="UTF-8"> <title></title> <style type="text/css"> div{width:100px;height:100px;border:1p ...
分类:
Web程序 时间:
2016-07-14 18:53:32
阅读次数:
294