box

打印CSDN网页内容

删除回忆录丶 提交于 2020-01-14 15:37:42
原文链接:https://blog.csdn.net/u010954948/article/details/82843105 打印CSDN内容,将以下js复制放入Chrome开发者选项里边的console,回车即可。 (function(){ $("#side").remove(); $("#comment_title, #comment_list, #comment_bar, #comment_form, .announce, #ad_cen, #ad_bot").remove(); $(".nav_top_2011, #header, #navigator").remove(); $(".p4course_target, .comment-box, .recommend-box, #csdn-toolbar, #tool-box").remove(); $("aside").remove(); $(".tool-box").remove(); $("main").css('display','content'); $("main").css('float','left'); window.print(); $("tool-box").remove(); })(); 来源: CSDN 作者: csdn1340802 链接: https://blog.csdn.net

CSS 盒模型与box-sizing

谁说我不能喝 提交于 2020-01-13 00:14:55
一、盒模型 一个web页面由许多html元素组成,而每一个html元素都可以表示为一个矩形的盒子,CSS盒模型正是描述这些矩形盒子的存在。 MDN的描述: When laying out a document, the browser's rendering engine represents each element as a rectangular box according to the standard CSS basic box model . CSS determines the size, position, and properties (color, background, border size, etc.) of these boxes. Every box is composed of four parts (or areas ), defined by their respective edges: the content edge , padding edge , border edge , and margin edge . CSS盒模型有四条边:外边距边、边框边、内填充边、内容边(Content edge、Padding edge、Border edge和Margin edge),四条边由内到外把它划分为四个区域:内容区域、内边距区域、边框区域

CSS3 拯救我的布局吧box-sizing

ぃ、小莉子 提交于 2020-01-13 00:11:14
一、CSS常见的两栏布局 如上图,是一个很简单的两栏布局,就是一个宽度为960px;并且页面居中显示,侧边栏栏宽度为220px;主内容宽度720px;两者有一个20px的间距,并且有页眉和页脚。 代码也很简单: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head lang="en-US"> <title> 两栏布局</title> </head> <style type="text/css"> *{ margin:0; padding:0; } .wrapper{ width:960px; margin-left:auto; margin-right: auto; color:#fff; font-size:30px; text-align:center; background: blanchedalmond; } #header{ height:100px; background:#38382e; margin-bottom:10px; } .side{ float:left; width:220px; margin-right: 20px; margin-bottom:10px; height

css3整理--box-sizing

徘徊边缘 提交于 2020-01-13 00:10:32
box-sizing语法:   box-sizing : content-box || border-box || inherit   参数取值:   content-box:此值为其默认值,其让元素维持W3C的标准Box Model,也就是说元素的宽度/高度(width/height)等于元素边框宽度(border)加上元素内边距(padding)加上元素内容宽度 /高度(content width/height)即:Element Width/Height = border+padding+content width/height。   border-box:此值让元素维持IE传统的Box Model(IE6以下版本),也就是说元素的宽度/高度等于元素内容的宽度/高度。这里的content width/height包含了元素的border,padding,内容的width/height。即此处的内容宽度/高度=width /height-border-padding。    在实际应用中,该属性有个非常有用的地方,即根据百分比为元素设置宽度时。此时,如果元素有padding或者border,将box-sizing设置为border-box会非常有用。 例如: <ul> <li style="box-sizing:border-box; padding:0 10px; width

盒模型与布局

血红的双手。 提交于 2020-01-12 09:16:11
1.盒模型 一个元素在页面中相当于一个盒子,包括margin、border、padding、content,如下图所示: 图1 css盒子 盒子模型包括IE盒模型与标准盒模型。 div{ width: 100px; height: 50px; border: 2px; padding: 10px; margin: 20px; } 标准盒子模型: 元素所占宽度: width = margin+ border + padding + width(内容宽度), 元素所占高度height同理。 css中指定的宽度是content宽度,高度是content高度。 div实际所占的宽度width = width(content宽度) + padding-left + padding-right + border-left + border-right + margin-left + margin-right= 100px + 10px +10px + 2px + 2px +20px +20px = 164px; div实际所占的高度height = height(content高度) + padding-top + padding-bottom + border-top + border-bottom + margin-top +margin-bottom= 50px + 10px +

CSS盒子模型+box-sizing

早过忘川 提交于 2020-01-10 21:56:17
当对文档进行布局时,浏览器渲染引擎会根据css-Box模型(CSS Basic Box model)将所有元素表示为一个矩形盒子。CSS决定这些盒子的大小,位置以及属性(颜色,背景,边框尺寸) 标准盒模型 从外向内依次为: Margin + border + padding + content-width 外边距区域 margin area 用空白区域扩展边框区域,以分开相邻的元素。它的大小为 margin-box 的高宽。外边距区域大小由 margin-top , margin-right , margin-bottom , margin-left 及简写属性 margin 控制。 边框区域border area 是包含边框的区域,扩展了内边距区域。它位于边框边界内部,大小为 border-box 宽和 border-box 高。由 border-width 及简写属性 border 控制。 内边距区域padding area 延伸到包围padding的边框。如果 内容区域content area 设置了背景、颜色或者图片,这些样式将会延伸到padding上(译者注:而不仅仅是作用于内容区域) 。 它位于内边距边界内部, 它的大小为 padding-box 宽与 padding-box 高。 内容区域content area 是包含元素真实内容的区域。它通常包含背景

JS瀑布流无限加载!

旧城冷巷雨未停 提交于 2020-01-08 02:17:00
关于瀑布流的原理我就不详细说明了,在上面的文章中有,或者大家可以去看大漠老师的文章,讲的很详细,今天我们主要是动手做一个瀑布流~ 说明:本文效果是无限加载的,意思就是你一直滚动就会一直加载图片出现,而不是说,加载几张就停了,如果需要加载几张就停止的,可以去看看下面的文章 原生JAVASCRIPT AJAX点击加载更多–(获取评论列表) 看完这个应该就明白怎么加载额定的数目后停止,但是值得注意的就是瀑布流,如果你不是无限加载,因为图片高度不一样,图片是顶部对齐的,所以底部就会出现留白的现象,如下所示: 至于底部留白美观问题,就见仁见智了! html结构: <div id="main"> <div class="pin"> <div class="box"> <img src="./images/1.jpg"/> </div> </div> <div class="pin"> <div class="box"> <img src="./images/2.jpg"/> </div> </div> <div class="pin"> <div class="box"> <img src="./images/3.jpg"/> </div> </div> <div class="pin"> <div class="box"> <img src="./images/4.jpg"/> </div>

POST 405 (Method Not Allowed)

扶醉桌前 提交于 2020-01-07 09:02:26
问题 I am trying to build a Chrome Extension that uses the BOX api. I am able to authentificate and enable access for the app, and then I extract and store the access token from the URL. The next step would be to upload a file to box, and I am trying to use the code they provided on the website with small modifications: //file - a csv file I created before var uploadUrl = 'https://upload.box.com/api/2.0/files/General'; // The Box OAuth 2 Header. Add your access token. var headers = { Authorization

POST 405 (Method Not Allowed)

只谈情不闲聊 提交于 2020-01-07 09:01:27
问题 I am trying to build a Chrome Extension that uses the BOX api. I am able to authentificate and enable access for the app, and then I extract and store the access token from the URL. The next step would be to upload a file to box, and I am trying to use the code they provided on the website with small modifications: //file - a csv file I created before var uploadUrl = 'https://upload.box.com/api/2.0/files/General'; // The Box OAuth 2 Header. Add your access token. var headers = { Authorization

下载CSDN转为pdf

主宰稳场 提交于 2020-01-06 22:14:23
使用 Google Chrome 浏览器,在右上角点开设置一栏,找到 更多工具—开发者工具 ,会弹出下图中界面: 接下来在 Console 中黏贴下面一段代码,然后按回车键即可,当前页面的pdf会自动加载出来。 (function(){ $("#side").remove(); $("#comment_title, #comment_list, #comment_bar, #comment_form, .announce, #ad_cen, #ad_bot").remove(); $(".nav_top_2011, #header, #navigator").remove(); $(".p4course_target, .comment-box, .recommend-box, #csdn-toolbar, #tool-box").remove(); $("aside").remove(); $(".tool-box").remove(); $("main").css('display','content'); $("main").css('float','left'); window.print(); $("tool-box").remove(); })(); 来源: CSDN 作者: byteyoung 链接: https://blog.csdn.net/qq_40126686