码迷,mamicode.com
首页 >  
搜索关键字:border    ( 11131个结果
push local repo to git remote on creating a new branch
current status: We have a remote repository and a local project repository with no git configured. We want to push to remote and create new branch. Pr ...
分类:其他好文   时间:2021-07-01 16:24:13    阅读次数: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
PHP乘法口诀
1 <?php 2 // 乘法口诀 3 echo'<table width="800" height="200" border="1">'; 4 for($i=1;$i<=9;$i++) 5 { 6 echo'<tr>'; 7 for($j=1;$j<=$i;$j++) 8 { 9 echo'<td ...
分类:Web程序   时间:2021-06-28 18:52:56    阅读次数:0
【python3】字符串格式化
字符串的格式化方法分为两种,分别为占位符(%)和format方式。占位符方式在Python2.x中用的比较广泛,随着Python3.x的使用越来越广,format方式使用的更加广泛。 一 占位符(%) %d 1 2 3 age = 29 print("my age is %d" %age) #my ...
分类:编程语言   时间:2021-06-28 18:22:35    阅读次数:0
京东初始化css
em, i { font-style: normal } * { margin: 0; padding: 0 } li { list-style: none } /* 图片后字体垂直于中部位置*/ img { border: 0; vertical-align: middle } /* 鼠标为指针样 ...
分类:Web程序   时间:2021-06-25 16:46:21    阅读次数:0
前端常见面试题
这段时间去找工作,发现了很多出现概率比较高的面试题,这里记录一下,希望对大家有帮助! 盒子模型的类型和区别 盒子包括:外边距(margin)、边框(border)、内边距(padding)、实际内容(content)四个属性。 分为盒子模型(标准盒模型)和IE盒子模型(怪异盒模型),两者最大的区别是 ...
分类:其他好文   时间:2021-06-24 18:17:06    阅读次数:0
【Azure Redis 缓存】Azure Redis加入VNET后,在另一个区域(如中国东部二区)的VNET无法访问Redis服务(注:两个VNET已经结对,相互之间可以互ping)
问题描述 为了保护Redis资源,把它与VNET集成后,实现只能通过VNET内网访问。在东二的区域中部署两个Redis服务后,发现一个奇怪的现象:东1区中的VM资源通过全局对等互联(Peering)实现了资源的互通。但在验证测试中,发现VM能连接第一个Redis资源,而无法连接第二个Redis资源? ...
分类:Web程序   时间:2021-06-24 17:44:46    阅读次数:0
三、WPF入门教程——布局和常用Panel学习
布局和常用Panel学习 一、简介 所有的WPF布局容器都派生自System.Windows.Controls.Panel。Panel继承自FrameworkElement。 在Panel中有一个比较重要的属性是UIElementCollection 类型的Children属性,UIElementC ...
分类:Windows程序   时间:2021-06-22 18:35:28    阅读次数:0
WPF颜色选择控件
效果图: cs: 1 /// <summary> 2 /// ColorPick.xaml 的交互逻辑 3 /// </summary> 4 public partial class ColorPick : UserControl 5 { 6 ChangeSource _changeSource; ...
分类:Windows程序   时间:2021-06-21 20:28:16    阅读次数:0
面试题系列--【解决移动端1px边框问题】
解决移动端1px边框问题的几种方法 1、边框粗细原因 在移动端下设置border为1px,在某些设备上看比1px粗。 这些由于不同的手机有不同的像素密度。在window对象中有一个devicePixelRatio属性,他可以反应css中的像素与设备的像素比。 devicePixelRatio的官方的 ...
分类:移动开发   时间:2021-06-19 19:16:33    阅读次数:0
11131条   上一页 1 2 3 4 ... 1114 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!