#container{ transition:all 3s; margin:-20px auto;
width:1px; height: 500px; animation: around 8s infinite ease;} #line{width:
1p...
分类:
Web程序 时间:
2014-05-10 00:39:24
阅读次数:
4537
注意要点:不出现滚动条时要设置height和...
分类:
其他好文 时间:
2014-05-09 22:27:59
阅读次数:
552
1.响应式图片
class="img-responsive"通过添加.img-responsiveclass可以让Bootstrap
3中的图片对响应式布局的支持更友好。其实质是为图片赋予了max-width: 100%;和height:
auto;属性,可以让图片按比例缩放,不超过其父元素的尺寸。...
分类:
Web程序 时间:
2014-05-09 19:26:13
阅读次数:
439
废话不多说,这是地址:http://android.lineten.net/layout.php。
有图有真相,例如:
你的XML假如是这样:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation=...
分类:
移动开发 时间:
2014-05-09 15:20:54
阅读次数:
424
单词不换行
word-break:"break-all"text-overflow:ellipsis;
超出部分用...代替overflow:hidden;超出不分隐藏字体显示在一行 white-space:"nowrap"想要字体换行显示
max-height:""; 原价...
分类:
其他好文 时间:
2014-05-09 07:45:10
阅读次数:
238
CSS里面background-repeat:no-repeat就不重复了<tdvalign="top"style="background-p_w_picpath:url(‘/user/mypage/live_1.jpg‘);height:29px;width:164px;background-repeat:no-repeat">
分类:
其他好文 时间:
2014-05-09 06:57:26
阅读次数:
252
line-height这个属性是被ie6所支持的。当是当一个父级元素内的子元素,包含了文字,且文字和img,input,label,span这些内联元素连接在一起的时候,你对父级元素设置line-height是没有任何效果的。很多情况下,我们希望文字和表单元素(比如input输入框)垂直居中,在设置...
分类:
其他好文 时间:
2014-05-09 05:05:16
阅读次数:
238
- (UIColor *)colorAtPixel:(CGPoint)point {
// Cancel if point is outside image coordinates
if (!CGRectContainsPoint(CGRectMake(0.0f,
0.0f, self.size.width,
self.size.height), point)) {...
分类:
移动开发 时间:
2014-05-09 01:04:12
阅读次数:
503
JavaScript实现的购物车效果,当然这个效果可以运用在好多地方,比如好友的选择,人力资源模块,计算薪资,人员的选择等等。下面看类似某种购物车的效果图:
code:
Insert title here
table{
border:10px;
}
select{
width:200px;
height:400px;
}
#order_area{
display:none;
}...
分类:
编程语言 时间:
2014-05-09 00:59:09
阅读次数:
473
一、各种元素的width height margin padding
特性(具体css元素的分来参看二)1.块级元素width、 height、 margin的四个方向、
padding的四个方向都正常显示,遵循标准的css盒模型。例如:div2.行内替换元素width、 height、 margi...
分类:
Web程序 时间:
2014-05-08 14:52:57
阅读次数:
545