摘要: ->select查询详解*********** select distinct\top ... --(5)投影 from -- (1)找到表 where -- (2)过滤掉我们不需要的数据 group by --(3)分组操作 having --(4)对分组后的数据进行过滤。 order by -- 阅读全文
posted @ 2020-06-14 17:45 进一步海阔天空 阅读(124) 评论(0) 推荐(0)
摘要: 网页制作: 代码:Index <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 阅读全文
posted @ 2020-06-14 17:03 进一步海阔天空 阅读(107) 评论(0) 推荐(0)
摘要: 代码:开学典礼代码练习, <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> < 阅读全文
posted @ 2020-06-14 16:59 进一步海阔天空 阅读(126) 评论(0) 推荐(0)
摘要: 1,Style类属性用于设置元素边框的样式。可以使之为none、dotted(点线)、dashed(虚线)、solid(实现)、double(双线)、groove(凹槽)、ridge(凸槽)、inset(凹边)、outset(凸边)。 布局: 2,Display:inline|block|none 阅读全文
posted @ 2020-06-14 16:56 进一步海阔天空 阅读(230) 评论(0) 推荐(0)
摘要: 位置属性:代码: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <titl 阅读全文
posted @ 2020-06-14 16:53 进一步海阔天空 阅读(174) 评论(0) 推荐(0)
摘要: 1,CSS当中的样式属性详解 Css当中的属性非常多,大体上可以分为以下几类:字体、背景、文本、位置、布局、边缘、列表。 1)、字体 字体的属性主要包括文字的字体、大小、颜色、显示效果等基本样式,下面是各种字体属性的详细介绍。 Font-family:该属性用于设置字体系列。 Font-size:该 阅读全文
posted @ 2020-06-14 16:49 进一步海阔天空 阅读(545) 评论(0) 推荐(0)
摘要: 1、样式规则的选择器(通过怎样的途径来获得页面上要设置样式的元素) 1)、HTML Selector 2)、Class Selector (需要给要设置样式的元素的class属性赋值) 3)、ID Selector (需要给要设置样式的元素的id属性赋值) 4)、关联选择器 P EM{text-in 阅读全文
posted @ 2020-06-14 16:43 进一步海阔天空 阅读(157) 评论(0) 推荐(0)