作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
有没有一种简单的方法来设置这样的元素样式?
应该在移动设备上使用,因此 CSS3 完全可用。想不出一个简单的方法。图片是没有问题的。
它必须是这样的 block 状并且里面应该有一个文本(这是一个 block 状的 8 位按钮)
最佳答案
这跳出了 feela 的开端,但它的不同足以保证它有自己的答案。
它不是在上面放置一个彩色 block ,而是只添加红色元素,让背景显示出来。但是,为了正确计算它(以便它们是方 Angular !),我必须设置一个固定的
width
高度。可能有某种古怪的方法可以用百分比来做到这一点,但对于概念证明来说,考虑起来太让人头疼了。由于要求是固定高度可变宽度,这应该可行。
伪元素需要有内容,否则它们会“崩溃”。内容可以为空,但需要设置该属性。
CSS:
/* main button block */
.button {
display:inline-block;
background: #f00;
position: relative;
line-height: 60px;
text-align: center;
padding: 0 20px;
height: 60px;
margin-left: 0.5em;
}
/* common background color to all */
.button, .button::before, .button::after {
background-color: #f00;
}
/* shared styles to make left and right lines */
.button::before, .button::after {
content: "";
position: absolute;
height: 50px;
width: 5px;
top: 5px;
}
/* pull the left 'line' out to the left */
.button::before {
left: -5px;
}
/* pull the right 'line' out to the right */
.button::after {
right: -5px;
}
fiddle :http://jsfiddle.net/3R9c5/2/
关于CSS 夹 Angular ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9997393/
有没有一种简单的方法来设置这样的元素样式? 应该在移动设备上使用,因此 CSS3 完全可用。想不出一个简单的方法。图片是没有问题的。 它必须是这样的 block 状并且里面应该有一个文本(这是一个 b
我正在为学校制作一个简单的浏览器,我正在尝试制作 Collection 夹。此处的代码将 Collection 夹添加到文件中(这样我可以在应用程序关闭后保留它)并将其显示在 TextView 中。我
我是一名优秀的程序员,十分优秀!