Questions tagged «border»

边框是一种图形用户界面构造,用于包围和/或突出显示其中包含的某些内容。

7
Firefox中未显示边框,表格,位置:边框相对于tbody或背景色位于边框
考虑以下HTML: <html> <head> <style> TABLE.data TD.priceCell { background-color: #EEE; text-align: center; color: #000; } div.datagrid table { border-collapse: collapse; } div.datagrid table tbody { position: relative; } </style> </head> <body> <div id="contents" class="datagrid"> <table class="data" id="tableHeader"> <thead> <tr class="fixed-row"> <th>Product</th> <th class="HeaderBlueWeekDay">Price</th> <th class="HeaderBlueWeekDay">Discount</th> </tr> </thead> <tbody> <tr style="font-style: italic;"> …
79 css  firefox  border 


3
ggplot中的控制点边框厚度
使用ggplot时,我可以设置shape为21-25来获得对内部(fill)和边框(col)颜色具有独立设置的形状,如下所示: df <- data.frame(id=runif(12), x=1:12, y=runif(12)) ggplot(df, aes(x=x, y=y)) + geom_point(aes(fill=id, size=id), colour="black", shape=21) 但是,我无法弄清楚如何控制形状边界的厚度,无论是将其设置为绝对值还是将其设置为美观的贴图。我注意到,如果我设置一个lwd值,它将覆盖size美学: ggplot(df, aes(x=x, y=y)) + geom_point(aes(fill=id, size=id), colour="black", shape=21, lwd=2) 如何控制边框的厚度?
76 r  ggplot2  border  point  thickness 

4
从文本区域删除所有样式(边框,发光)
我想从文本区域中删除样式,如果可能的话,将其全部留白,没有任何边框或辉光。我尝试了在SO上找到的其他内容,但没有任何效果(尝试使用FF和Chrome)。 那么,有可能吗? 到目前为止,我已经尝试过: textarea#story { // other stuff -moz-appearance:none; outline:0px none transparent; } textarea:focus, input:focus{ outline: 0; } *:focus { outline: 0; }
75 css  forms  textarea  border 


6
如何仅在一侧设置CSS边框?
对于给定的div我只想在左侧,右侧,顶部或底部显示边框。 目前,我有以下内容,这在所有方面都设置了边框: #testdiv { border: 1px solid; } 为了只在左侧有边框,我需要做什么?
74 css  border 

12
CSS内嵌边框
我需要创建一个单色插入边框。这是我正在使用的CSS: border: 10px inset rgba(51,153,0,0.65); 不幸的是,这会创建3D脊状边框(忽略正方形和深色说明框)
74 html  css  border 

2
matplotlib条形图黑色-如何删除条形边框
我正在使用pyplot.bar,但绘制的点太多,以致条的颜色始终为黑色。这是因为条形的边框是黑色的,并且它们的数量太多,以致于它们都被挤压在一起,所以您所看到的只是边框(黑色)。有没有一种方法可以删除条形边框,以便可以看到预期的颜色?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.