码迷,mamicode.com
首页 >  
搜索关键字:div css    ( 164063个结果
CodeForces Virtual Participation 记录
(可能 ?)会记录一下最近 VP 和 补题记录。 6.27 Codeforces Round #724 (Div. 2) 赛时切了 ABCD 。A 题 3 发 罚时,B 题 2 发,D 题 1 发 ,wtcl。 1536E - Omkar and Forest 考虑将某些 # 置为 0 , 然后以 ...
分类:其他好文   时间:2021-06-28 20:11:47    阅读次数:0
建一个网站需要学习的基础知识
1.Asp.net MVC 2.web页面展示(前端) 2.1 html (页面框架) 2.2 css (样式) 2.3 javascript,简称js (向后端发送请求,保存数据,或者从后端获取数据) 参考:https://www.w3school.com.cn/ 3.数据库存储(sqlserve ...
分类:Web程序   时间:2021-06-28 20:00:28    阅读次数:0
响应式布局
<div class="row"> <div class="box1 col-xs-12 col-md-4">A</div> <div class="box2 col-xs-12 col-md-8 col-sm-3">B</div> <div class="col-xs-12 col-sm-3">C ...
分类:其他好文   时间:2021-06-28 19:47:06    阅读次数:0
画三角形
div{ width: 0px; border: 30px solid transparent; border-left-color: tomato;} 第二种方法 div{ margin: auto; width: 0px; border-top: 20px solid transparent; ...
分类:其他好文   时间:2021-06-28 19:45:26    阅读次数:0
9.求整数序列中的主元素
1.题目如下 2.解题代码 #include<stdio.h> int majority(int a[],int n){ int i,count=1,c=a[0]; for(i=1;i<n;i++) { if(a[i]==c) count++; else { if(count>0) count--; ...
分类:其他好文   时间:2021-06-28 19:33:29    阅读次数:0
JavaWeb8.6【CSS案例:注册页面(html+css)】
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>注册页面(html)</title> 6 </head> 7 <style> 8 9 *{ 10 margin: 0px; 11 paddi ...
分类:编程语言   时间:2021-06-28 19:27:33    阅读次数:0
CSS(12)定位
定位 相对定位 相对定位 : position: relative; 相对于原来的位置,进行指定的偏移,相对定位的话,他仍然在文档流中 top : 10px; 距离上方移动10px (向下) left bottom right :-20px; 距离右方移动-20px (向右) html : <!DO ...
分类:Web程序   时间:2021-06-28 19:21:53    阅读次数:0
利用uni-transition实现微信小程序底部浮层
技术概述 ? 需求是实现一个包含三种状态,分别是底部、半屏、全屏的浮层,并且浮层支持用户随意拖动,同时还要防止用户过度拖动。技术难点在于对动画的控制,必须得有一定的过渡动画否则整体会很突兀。 技术详述 ? 首先看一下预期的样子,图为ios自带高德地图的底部浮层。 ? 最开始的动画我是用CSS的key ...
分类:微信   时间:2021-06-28 19:15:24    阅读次数:0
CSS(11)父级边框塌陷问题
父级边框塌陷问题 clear clear : right; 右侧不允许有浮动元素 clear : left; 左侧不允许有浮动元素 clear : both; 两侧不允许有浮动元素 clear : none; 解决方法: 1.增加父级元素的高度 #box{ width: 1500px; height ...
分类:Web程序   时间:2021-06-28 19:13:22    阅读次数:0
快速排序
1. 原理: 递归:函数自己调用自己 1 function fn() { 2 fn(); 3 } 4 fn();//会导致栈溢出 1 function fn() { 2 setTimeout(fn,0); 3 } 4 fn();//不会导致栈溢出 2. 代码实现: 3.时间复杂度: 空间复杂度: ...
分类:编程语言   时间:2021-06-28 19:12:32    阅读次数:0
164063条   上一页 1 ... 9 10 11 12 13 ... 16407 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!