码迷,mamicode.com
首页 >  
搜索关键字:blue    ( 1833个结果
vue 对css样式进行修改
一、定义样式 <style> .blueBack { background-color: blue; } .yellowBack { background-color: yellow; } </style> 二、定义两个按钮,一个div <div id="vueFirst"> <div :class ...
分类:Web程序   时间:2020-07-19 15:56:07    阅读次数:158
Vue(一)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .bg{ background-color:blue ; width: 100px; height: 100px; ...
分类:其他好文   时间:2020-07-18 13:41:59    阅读次数:56
光头强
\(\color{blue} \text {【题目描述】}\) 一棵树,点编号1 . . . n,Q次询问编号[l, r]的点的导出子图中有几个连通块。 \(\color{blue}\text{【输入】}\) 第一行n, Q。 接下来n ? 1行每行两个数表示一条树边(u, v)。 接下来Q行每行两 ...
分类:其他好文   时间:2020-07-17 14:02:42    阅读次数:81
三角形的实现和盒模型、层模型、浮动模型、定位、权重、margin问题
相邻的border会平分所占的区域,出现一个斜线, .my_triangle{ width: 10px; height: 10px; background-color: blue; border-width: 100px ; border-style: solid; border-left-colo ...
分类:其他好文   时间:2020-07-13 18:40:16    阅读次数:71
jquery内容
1.初识jQuery以及jQuery的主要内容 参考网址: https://www.cnblogs.com/yangshuwen/p/13183803.html 2.jQuery选择器 1.基本选择器 $("h1").css("color", "blue"); //标签选择器 $(".price") ...
分类:Web程序   时间:2020-07-10 21:27:24    阅读次数:108
css 选择器
基础选择器 <style> .cls1{ color: blue; } div{ color:green; } #div1{ color: red; } </style> 基础选择器 id选择器:选择具体的id属性值的元素.建议在一个html页面中id值唯一 语法:#id属性值 元素选择器:选择具有 ...
分类:Web程序   时间:2020-07-10 00:13:34    阅读次数:915
【刷题-LeetCode】151 Reverse Words in a String
Reverse Words in a String Given an input string, reverse the string word by word. Example 1: Input: "the sky is blue" Output: "blue is sky the" Exampl ...
分类:其他好文   时间:2020-07-07 15:09:44    阅读次数:43
【C#】枚举和字符串以及数字之间的互相转换
准备条件: ①枚举类型: 1 public enum enumColor 2 { 3 Red = 1, 4 Yellow, 5 Green, 6 Blue, 7 White, 8 Black 9 } ②以下状态都是理想状态,并未对错误数据进行处理。 1.枚举类型转换为字符串 private stri ...
分类:Windows程序   时间:2020-07-05 15:28:43    阅读次数:63
CSS0009: CSS渐变背景效果
1, background-image: linear-gradient(45deg, red, yellow, blue); ...
分类:Web程序   时间:2020-07-04 18:39:55    阅读次数:71
PHP 中的集合运算
A∩B array_intersect example: $array1 = array("a" => "green", "red", "blue"); $array2 = array("b" => "green", "yellow", "red"); $result = array_interse ...
分类:Web程序   时间:2020-06-30 00:46:45    阅读次数:92
1833条   上一页 1 ... 3 4 5 6 7 ... 184 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!