Questions tagged «border»

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

15
如何删除输入文本元素上的边框突出显示
当一个HTML元素被“聚焦”(当前被选中/插入)时,许多浏览器(至少是Safari和Chrome)会在其周围放置一个蓝色边框。 对于我正在处理的布局,这会分散注意力,看起来不正确。 <input type="text" name="user" class="middle" id="user" tabindex="1" /> Firefox似乎没有这样做,或者至少可以让我通过以下方式控制它: border: x; 如果有人可以告诉我IE的性能,我会很好奇。 让Safari消除这点闪光会很好。
610 css  input  safari  webkit  border 


14
在div内而不是在其边缘放置边框
我有一个<div>元素,我想在上面加一个边框。我知道我可以写style="border: 1px solid black",但是这会在div的任何一侧增加2px,这不是我想要的。 我宁愿此边框距div的边缘为-1px。div本身是100px x 100px,如果我添加边框,则必须做一些数学运算才能使边框出现。 有什么方法可以使边框出现,并确保框仍为100px(包括边框)?
506 html  css  border 

24
有没有一种简单的方法可以在Android View的顶部和底部添加边框?
我有一个TextView,我想沿其顶部和底部边框添加黑色边框。我尝试将android:drawableTop和添加android:drawableBottom到TextView中,但这只会导致整个视图变黑。 <TextView android:background="@android:color/green" android:layout_width="fill_parent" android:layout_height="wrap_content" android:drawableTop="@android:color/black" android:drawableBottom="@android:color/black" android:text="la la la" /> 有没有一种方法可以在Android中轻松地向视图(尤其是TextView)添加上下边框?




9
如何仅在表格内应用边框?
我试图弄清楚如何仅在表格内添加边框。当我做: table { border: 0; } table td, table th { border: 1px solid black; } 边框围绕整个表格,也位于表格单元格之间。我要实现的是仅在表格单元格周围的表格内部有边框(表格周围没有外部边框)。 这是我用于表格的标记(即使我认为这并不重要): <table> <tr> <th>Heading 1</th> <th>Heading 2</th> </tr> <tr> <td>Cell (1,1)</td> <td>Cell (1,2)</td> </tr> <tr> <td>Cell (2,1)</td> <td>Cell (2,2)</td> </tr> <tr> <td>Cell (3,1)</td> <td>Cell (3,2)</td> </tr> </table> 以下是我适用于大多数表格的一些基本样式: table { border-collapse: collapse; border-spacing: …
195 html  css  html-table  border 

9
如何为HTML div标签设置边框
我正在尝试在HTML中的div标签周围定义边框。在某些浏览器中,不会显示边框。 这是我的HTML代码: <div id="divActivites" name="divActivites" style="border:thin"> <textarea id="inActivities" name="inActivities" style="border:solid"> </textarea> </div> 运行代码段隐藏结果展开摘要 如何为HTML div标签设置边框?
192 html  css  border 

18
即使没有内容,如何强制DIV块扩展到页面底部?
在下面显示的标记中,我试图使内容div一直延伸到页面底部,但只有在有要显示的内容时才延伸。我要这样做的原因是,即使没有任何内容要显示,垂直边框仍会在页面下方显示。 这是我的HTML: <body> <form id="form1"> <div id="header"> <a title="Home" href="index.html" /> </div> <div id="menuwrapper"> <div id="menu"> </div> </div> <div id="content"> </div> 而我的CSS: body { font-family: Trebuchet MS, Verdana, MS Sans Serif; font-size:0.9em; margin:0; padding:0; } div#header { width: 100%; height: 100px; } #header a { background-position: 100px 30px; background: transparent …
190 css  html  border 



3
形状xml中的边框
我正在尝试使一个可绘制的按钮使用。我希望它具有这种颜色,并带有2px的边框。 一切正常,除非我无法显示边框... <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <gradient android:startColor="@color/bar_clicked_dark" android:endColor="@color/bar_clicked_light" android:angle="90"/> <corners android:bottomLeftRadius="0dp" android:topLeftRadius="15dp" android:bottomRightRadius="15dp" android:topRightRadius="0dp" /> <stroke android:width="2dp" color="#ff00ffff" /> </shape>

13
Android LinearLayout:在LinearLayout周围添加带有阴影的边框
我想创建与示例相同的LinearLayout边框: 在此示例中,我们可以看到linearLayout周围的边框并不相同。如何使用XML可绘制文件创建此文件? 现在,我只能在LinearLayout周围创建一个简单的边框,如下所示: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <corners android:radius="1dp" android:topRightRadius="0dp" android:bottomRightRadius="0dp" android:bottomLeftRadius="0dp" /> <stroke android:width="1dp" android:color="#E3E3E1" /> <solid android:color="@color/blanc" /> </shape>

21
UIView底边框?
UIScrollView *toScrollView我要添加一个(这是屏幕的宽度)的灰色底边框(与iPhone的本地Messages应用程序的compose视图的to-field的边框完全一样)。 为此,我遵循了可可触摸:如何更改UIView的边框颜色和厚度?并使用自定义样式覆盖了顶部边框,UINavigationBar并将其toScrollViewx坐标-1和宽度322设置为使左右边框刚好不在屏幕上。 看起来不错,但这有点不合时宜,我想知道是否有更好的方法可以做到这一点。 - (void)viewDidLoad { [super viewDidLoad]; // Add UINavigationBar *navigationBar at top. self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(cancelAction)]; UINavigationBar *navigationBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 44.0f)]; navigationBar.items = [NSArray arrayWithObject:self.navigationItem]; // Add UIScrollView *toScrollView below navigationBar. UIScrollView *toScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(-1.0f, 43.0f, 322.0f, 45.0f)]; …
145 ios  uiview  border 

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.