上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 颜色值 在网页中有字体颜色(color)、背景颜色(background-color)、边框颜色(border)等,设置颜色的方法也有很多种: 1、英文命令颜色 2、RGB颜色 这个与 photoshop 中的 RGB 颜色是一致的,由 R(red)、G(green)、B(blue) 三种颜色的比例 阅读全文
posted @ 2017-03-22 15:58 claremz 阅读(1916) 评论(0) 推荐(0) 编辑
摘要: css布局模型 清楚了CSS 盒模型的基本概念、 盒模型类型, 我们就可以深入探讨网页布局的基本模型了。布局模型与盒模型一样都是 CSS 最基本、 最核心的概念。 但布局模型是建立在盒模型基础之上,又不同于我们常说的 CSS 布局样式或 CSS 布局模板。如果说布局模型是本,那么 CSS 布局模板就 阅读全文
posted @ 2017-03-22 00:34 claremz 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 文字排版--字体 我们可以使用css样式为网页中的文字设置字体、字号、颜色等样式属性。 下面代码实现:为网页中的文字设置字体为宋体。 body{font-family:"宋体";} 这里注意不要设置不常用的字体,因为如果用户本地电脑上如果没有安装你设置的字体,就会显示浏览器默认的字体。(因为用户是否 阅读全文
posted @ 2017-03-21 23:40 claremz 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 认识CSS样式 CSS全称为“层叠样式表 (Cascading Style Sheets)”,它主要是用于定义HTML内容在浏览器内的显示样式,如文字大小、颜色、字体加粗等。 如下列代码: 使用CSS样式的一个好处是通过定义某个样式,可以让不同网页位置的文字有着统一的字体、字号或者颜色等。 CSS样 阅读全文
posted @ 2017-03-18 21:08 claremz 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 使用表单标签,与用户交互 表单是可以把浏览者输入的数据传送到服务器端,这样服务器端程序就可以处理表单传过来的数据。 语法: 讲解: 1.<form> :<form>标签是成对出现的,以<form>开始,以</form>结束。 2.action :浏览者输入的数据被传送到的地方,比如一个PHP页面(s 阅读全文
posted @ 2017-03-16 22:18 claremz 阅读(373) 评论(0) 推荐(0) 编辑
摘要: Html和CSS的关系 学习web前端开发基础技术需要掌握:HTML、CSS、JavaScript语言。下面我们就来了解下这三门技术都是用来实现什么的: 1. HTML是网页内容的载体。内容就是网页制作者放在页面上想要让用户浏览的信息,可以包含文字、图片、视频等。 2. CSS样式是表现。就像网页的 阅读全文
posted @ 2017-03-16 21:27 claremz 阅读(4509) 评论(1) 推荐(1) 编辑
摘要: 入门: PAT(A) 1042. Shuffling Machine (20) PAT(A) 1046. Shortest Distance (20) PAT(A) 1065. A+B and C (64bit) (20) PAT(A) 1002. A+B for Polynomials (25) 阅读全文
posted @ 2017-03-14 18:40 claremz 阅读(411) 评论(0) 推荐(0) 编辑
摘要: Zhejiang University has 6 campuses and a lot of gates. From each gate we can collect the in/out times and the plate numbers of the cars crossing the g 阅读全文
posted @ 2017-03-14 18:38 claremz 阅读(353) 评论(0) 推荐(0) 编辑
摘要: It is said that in 2013, there were about 100 graduate schools ready to proceed over 40,000 applications in Zhejiang Province. It would help a lot if 阅读全文
posted @ 2017-03-14 17:50 claremz 阅读(856) 评论(0) 推荐(0) 编辑
摘要: Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and 阅读全文
posted @ 2017-03-14 17:36 claremz 阅读(193) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页