码迷,mamicode.com
首页 >  
搜索关键字:bottom    ( 5606个结果
mobileSite开发Tips
1,根节点(html,body)overflow属性会遮盖fixed定位元素 2,fixed元素点击时会弹出底部的菜单,应该是浏览器特性(safari) 3,fixed元素使用后,在body里面使用padding-bottom以占位,如果放入其他元素中,最好也占位,避免IOS滑动特性遮盖元素 4,i ...
分类:其他好文   时间:2020-05-27 20:42:10    阅读次数:60
Ubuntu Server 12.04(14.04/14.10) 静态IP配置
1、配置静态IP地址: # vim /etc/network/interfaces 原内容有如下4行: auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp 以上表示默认使用DHCP分配IP,修改为如下: auto lo ifac... ...
分类:系统相关   时间:2020-05-27 18:55:19    阅读次数:89
WPF数据绑定
MainWindow.xaml 主要注意的是三个地方(现在我对WPF基础知识不怎么数量) 添加x:name 这个我难以理解,于是百度了一下: https://blog.csdn.net/fantasiax/article/details/3499767 ... ...
分类:Windows程序   时间:2020-05-27 10:38:40    阅读次数:82
关于margin 和 margin auto
块级元素 如 div 可以设置margin-top、margin-bottom 、margin-left、margin-right。 但是 margin的 auto值 设置水平方向的,可以直接水平居中;想要垂直居中需要子绝父相,给自己添加绝对定位后并且将top bottom right left赋值 ...
分类:其他好文   时间:2020-05-26 20:50:03    阅读次数:77
CSS外观样式属性
color:文本颜色说明定义文本的颜色,取值方式有3种:预定义颜色值,如red,green,yellow,blue等。十六进制,以#开头0~9ABCDEF,16进制颜色代码指定颜色的组成方式:前两位表示红色,中间两位表示绿色,最后两位表示蓝色,如#FF0000,#FF6600,#29D794等。实际工作中,十六进制是最常用的定义颜色的方式。RGB代码,如红色:rgb(255,0,0)或rgb(10
分类:Web程序   时间:2020-05-25 17:39:57    阅读次数:88
PAT.Recover the smallest number(字符串排序,注意输出)
1038 Recover the Smallest Number (30分) Given a collection of number segments, you are supposed to recover the smallest number from them. For example, ...
分类:编程语言   时间:2020-05-25 00:13:01    阅读次数:66
添加功能todolist练习
css 1 /*base*/ 2 body { 3 background: #fff; 4 } 5 6 .btn { 7 display: inline-block; 8 padding: 4px 12px; 9 margin-bottom: 0; 10 font-size: 14px; 11 li ...
分类:其他好文   时间:2020-05-24 21:27:23    阅读次数:65
回到顶部练习
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 <style> 7 .toTop{ 8 width: 40px; 9 height: 40px; 10 ba ...
分类:其他好文   时间:2020-05-24 21:24:26    阅读次数:61
CSS外边距塌陷的问题
当块级元素(block)的上外边距(margin-top)和下外边距(margin-bottom)同时都有设定时只会只会保留最大边距,这种行为称为边界折叠(margin collapsing),有时也翻译为外边距重叠。、 设定float和position=absolute(包括固定定位fixed,但 ...
分类:Web程序   时间:2020-05-24 11:46:43    阅读次数:299
解决行内元素间隙问题
一、如何解决上图之间存在的左右空隙问题??小编积累了几种方法 1.让行内元素的标签放成一行(不推荐)(解决左右间隙) (1)成一行,无任何的空格 <div class="inner"> <img src="img/2.jpg" ><img src="img/295254.jpg" ><img src ...
分类:其他好文   时间:2020-05-24 00:44:53    阅读次数:65
5606条   上一页 1 ... 20 21 22 23 24 ... 561 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!