- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个小表单,末尾有一个按钮。
没有 border-radius 它看起来像这样 --> https://s29.postimg.org/3yw0js3qf/screenshot--2017-04-02-20-18-33.png
当我应用 border-radius 时,它看起来像这样 --> https://s11.postimg.org/t25tmdsf7/screenshot--2017-04-02-20-19-12.png
我正在使用 Chrome、Windows 操作系统。我试过使用 web-kit 以防万一,结果相同。其他人有没有遇到过这种情况?
下面是这段代码,以防我在那里没有看到任何东西:
HTML
<div id="boton">
<button type="button" class="texto">INGRESAR</button>
</div>
CSS
#boton{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
width: 100%;
margin: auto;
margin-top: 2%;
}
#boton>button{
width: 20%;
padding: 10px;
}
谢谢!
最佳答案
您需要使用边框和背景渐变复制默认样式:
border-radius: 4px;
border: 1px solid #AFAFAF;
background: linear-gradient(#E3E3E3, #F7F7F7);
参见 fiddle :https://jsfiddle.net/1gxkyq9c/
关于html - Border-radius 在应用时会在美学上中断.. Bug?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43174746/
我无法将存储在变量中的 POSIXct 作为 geom_rect 的 xmin/xmax 传递。我试图构建一个独立的示例,而不会轻视我正在尝试做的事情...... 这个想法是采用一个 ggplot2
我想动态修改/创建美感,而无需重新创建geom层。以下是我的代码。 library("ggplot2") dat 3)) 这里我必须修改geom_point以添加美感。这个想法是始终绘制点并动态修改颜
我想更改一组 ggplot 的点和线的默认颜色。 当然,我可以定义一种颜色,然后在每个绘图中显式调用它: my_colour <- "firebrick" ggplot(cars, aes(speed
假设我有两个 ggplot 美学: a.1 c(a.1,a.2) $v.1 [1] 1 $v.2 [1] 2 $v.3 [1] 3 aes对象是“未计算的表达式”和 c()函数按预期工作,具体取决于
我想使用具有 2 美学的包 ggpubr 的 ggline。等效项在 geom_line 中完美运行,但在 ggline 中无效。假设我有这个数据集 data % mutate(a = x^2,
我有以下数据集 map(.x = list(small = 3, medium = 10, large = 100) , .f = ~ sample(rnorm(1000), .x, r
Scatterplot<-ggplot( diamonds[sample(nrow(diamonds), 1000), ], aes(carat, price, colour=cl
我是一名优秀的程序员,十分优秀!