日剧

隐藏select边框及下接箭头方法

故事扮演 提交于 2020-01-27 08:40:40
代码: /* 套在Select外层,用于隐藏Select框 */ .DivSelect { position : relative ; background-color : transparent ; width : 140px ; height : 17px ; overflow : hidden ; /* 隐藏了小三角,因为宽度为110px,而select宽度为130px */ border-width : 0px ; border-top-style : none ; border-right-style : none ; border-left-style : none ; border-bottom-style : none ; } /* 设置Select样式 */ .SelectList { position : relative ; background-color : transparent ; TOP : -2px ; left : -2px ; border-width : 0px ; border-top-style : none ; border-right-style : none ; border-left-style : none ; border-bottom-style : none ; width : 160px ; display :

js左右无缝滚动

痞子三分冷 提交于 2020-01-26 17:22:43
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <html xmlns=" http://www.w3.org/1999/xhtml "> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> <script> function getObject(objectId) { if(document.getElementById && document.getElementById(objectId)) { // W3C DOM return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { // MSIE 4 DOM return document.all(objectId); } else if (document.layers && document.layers[objectId]) { // NN 4 DOM..

css中 background设置

核能气质少年 提交于 2020-01-25 16:07:02
css2 中有五个与背景相关的属性。它们是: background-color:完全填充背景的颜色 background-image:用作背景的图片 background-position:确定背景图片的位置 background-repeat:确定背景图片是否重复铺平 background-attachment:确定背景图片是否随页面滚动 这些属性能够写在一个简单的属性中: background 。必须指出background负责元素内容部分的背景,包括padding和border,但不包括margin。在Firefox,Safari 和 Opera, 以及 IE8中是这样处理的。不过在IE7和万恶的IE6中就没包括border,区别就像下面的图片示例显示的那样 。 在 IE7 和IE6中 Background 没有包括border 基本属性 Background color属性 background-color用来描述设置填充背景的颜色。有多种方法来定义确定填充的颜色,下列方法都是等效的: background-color: rgb(0, 0,255); background-color:#0000ff; background-color 也能设置成transparent,这样就能让其下的元素显示出来。 Backgroundimage属性 background-image

C#巧用Excel模版变成把Table打印出来

末鹿安然 提交于 2020-01-25 03:24:53
转载: http://blog.csdn.net/gwblue/article/details/38865525 将一个做好的 Excel 模版,通过程序填上数据然后打印出来这个需求有两种方法一种是通过代码打开 Excel 模版然后填入数据然后再打印。 第二种方法就是我将要介绍的 1 、将 Excel 设置好格式另存为 HTML 页将 Excel 转化为 HTML 的 Table 2 、将 HTML 用记事本打开把这个 HTML 页将 <style></style> 和 <table></table> 标签中的内容粘贴出来。 3 、在程序中写入打印代码。 [java] view plain copy using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Text; using System.IO; using BLL; using Model; using System.Data; public partial class WebUI_Order_OutExcel : System.Web.UI.Page { BT_XDMgr XDMgr = new BT_XDMgr();

C#巧用Excel模版变成把Table打印出来

三世轮回 提交于 2020-01-25 03:24:27
文章来源: http://blog.csdn.net/gwblue/article/details/38865525 将一个做好的 Excel 模版,通过程序填上数据然后打印出来这个需求有两种方法一种是通过代码打开 Excel 模版然后填入数据然后再打印。 第二种方法就是我将要介绍的 1 、将 Excel 设置好格式另存为 HTML 页将 Excel 转化为 HTML 的 Table 2 、将 HTML 用记事本打开把这个 HTML 页将 <style></style> 和 <table></table> 标签中的内容粘贴出来。 3 、在程序中写入打印代码。 [java] view plain copy using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Text; using System.IO; using BLL; using Model; using System.Data; public partial class WebUI_Order_OutExcel : System.Web.UI.Page { BT_XDMgr XDMgr = new BT_XDMgr(

C#巧用Excel模版打印

扶醉桌前 提交于 2020-01-25 03:23:48
通过程序填上数据然后打印出来这个需求有两种方法一种是通过代码打开 Excel 模版然后填入数据然后再打印。 第二种方法就是我将要介绍的 1 、将 Excel 设置好格式另存为 HTML 页将 Excel 转化为 HTML 的 Table 2 、将 HTML 用记事本打开把这个 HTML 页将 <style></style> 和 <table></table> 标签中的内容粘贴出来。 3 、在程序中写入打印代码。 using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Text; using System.IO; using BLL; using Model; using System.Data; public partial class WebUI_Order_OutExcel : System.Web.UI.Page { BT_XDMgr XDMgr = new BT_XDMgr(); DataTable dtOrderMainInfo = new DataTable(); DataTable dtOrderCongInfo = new DataTable();

两列

荒凉一梦 提交于 2020-01-13 15:39:49
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>两列</title> <style> .container{ height: 1000px; width: 1000px; /* display: inline-block; */ position: relative; margin: 0 auto; border: 1px solid #fcc; /* text-align: center; */ } .box1{ border: 1px solid red; float:left; width: 30%; height: 100%; } .box2{ border: 1px solid blue; float:left; width: 60%; height: 100%; } .clearfix{ clear: both; } .box3{ border: 1px solid green; float:left; width: 60%;

将这段美化的css代码

怎甘沉沦 提交于 2020-01-12 15:55:04
很多时候如果不是用了很多样式,很难把边框修饰得好看,看了一篇博文,觉得真的挺漂亮,也挺好看。 转载的博文地址 将这段美化的css代码 border:1px solid #96c2f1;background:#eff7ff 应用到div中, <div style="padding:8px;border:1px solid #96c2f1;background:#eff7ff"> border:1px solid #96c2f1;background:#eff7ff</div> 效果如下。 border:1px solid #96c2f1;background:#eff7ff 以下还有十个示例。 border:1px solid #9bdf70;background:#f0fbeb border:1px solid #bbe1f1;background:#eefaff border:1px solid #cceff5;background:#fafcfd border:1px solid #ffcc00;background:#fffff7 border:1px solid #cee3e9;background:#f1f7f9 border:1px solid #a9c9e2;background:#e8f5fe border:1px solid #e3e197;background:

css小技巧

梦想与她 提交于 2020-01-03 14:04:04
最近工作收集的一些css的小技巧: 一、黑白图像 当你需要让一张彩色的图片显示为黑白照片的时候,你可以用下面的一段代码。 img.desaturate{ filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); } 二、使用 :not() 在菜单上应用/取消应用边框 先给每一个菜单项添加边框 .nav li{ border-right: 1px solid #666; } 然后再除去最后一个元素 .nav li:last-child{ border-right: none; } 也可以直接使用 :not() 伪类来应用元素 .nav li:not(:last-child){ border-right: 1px solid #666 } 如果你的元素有兄弟元素的话,也可以使用通用的熊年底选择符( ~ ) .nav li:first-child ~ li{ border-left: 1px solid #666 } 三、页面顶部阴影 给网页加上漂亮的顶部阴影效果 body:before{ content: ''; position: fixed; top:

The Shapes of CSS(css的形状)

a 夏天 提交于 2020-01-03 08:40:33
All of the below use only a single HTML element. Any kind of CSS goes, as long as it's supported in at least one browser. (下面的所有内容只使用一个HTML元素。任何一种CSS都可以,只要它在至少一个浏览器中支持。) Square (正方形) /*--> */ /*--> */ #square { width: 100px; height: 100px; background: red; } Rectangle (长方形) /*--> */ /*--> */ #rectangle { width: 200px; height: 100px; background: red; } Circle (圆形) /*--> */ /*--> */ #circle { width: 100px; height: 100px; background: red; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px; } /* Cleaner, but slightly less support: use "50%" as value */ 半圆形(Semicircle) 扇形