A border is a graphical user interface construct that is used to surround and/or highlight something that is contained within.

learn more… | top users | synonyms (1)

2
votes
1answer
27 views

JFrame with custom border not showing controls

I'm trying to make my own custom border, and I have done this through overriding the paint function in the JFrame. The problem which I have run into, is the fact that paint is being called after the ...
0
votes
1answer
9 views

how to get rid of the a “invisible border” on hover

I'm trying to make a navigation bar with only a right border, but when I do this, there's like an invisible left border on the hover, which does not fully make the border the color I want it to be. (a ...
0
votes
1answer
17 views

border of table as picture is not working

I have the following code in JsFiddle: http://jsfiddle.net/56mpJ/2/ What I am trying to do is to have the border of the table as a picture that I take from the internet I obviously tried ...
0
votes
1answer
24 views

Multiple Alignments inside border

I have the below xaml code. I am trying to align the image and the textblock to the right. The first textblock is displaying correctly, I just want the image and 2nd textblock to dock to the far ...
0
votes
1answer
21 views

Divs location changes if i remove the border

I have 3 divs. One inside the other. The first div(yellow background) has absolute width and height. The second div(green background) is located inside the first one and has 100% width and height. The ...
0
votes
0answers
38 views

unable to add a border around gtk label

I try to put a solid border around a gtk_hbox. My application is split in 2 parts : a drawing aera at the top and at the bottom, a dialog with 6 labels (gtk_hbox). I would like to add a border around ...
3
votes
2answers
43 views

css border-style double 1px gap chrome

3px double border on the left or right side of a div, however in chrome it is leaving a 1px gap at the top of the border. I have tried looking extensively to see if this is a browser bug or for some ...
-2
votes
1answer
34 views

Calculating the Perimeter of a Polygon [closed]

I have a list of coordinates (points) consisting of a Double X and Double Y for each. How can I determine the perimeter (border) of these points so I can turn them into a Polygon? I have tried the ...
0
votes
3answers
42 views

CSS: How to float 3 divs side by side for width:100% without messing up?

I want to put three div { width:33%; border: 3px solid #333;} aside within a page. But it just fails, like if the sum was superior to 100%. How to float 3 divs side by side and occupying a width:100% ...
1
vote
1answer
34 views

Remove space/border/margin of JTabbedPane

How can i remove the selected margin of a JTabbedPane? :(
2
votes
5answers
35 views

Broken css code - border doesnt get overwritten

So i have encountered a new problem which was never the case before. <ul id="mainmenu"> <li class="mbutton"><a class="currentnav" href="#">Link 1</a></li> <li ...
0
votes
4answers
46 views

How to Make a 3D button using CSS?

I have a CSS button that looks like this: that is formed from this CSS code: .Button{ color: #333; border: 1px solid orange; border-bottom: 5px solid orange; background-color: #fff; font-size: ...
0
votes
0answers
44 views

JComboBox border. How to remove? [duplicate]

How do you take away the blue border that comes as default on a JComboBox component? I've tried: playlist1.setBorder(new EmptyBorder(0, 0, 0, 0));
0
votes
1answer
33 views

How to apply border to a whole shape?

I drew a cloud via CSS3 using different div tag I am trying to add a border to the whole shape but I am having trouble since every shape get its own border how can I apply a border to the whole ...
0
votes
1answer
24 views

InputAccessoryView Border?

I'm creating a custom keyboard accessory view. I am currently about 95% done with it. The only thing I have left is to remove the 1px (or 2px?) line above the native iOS keyboard. Is there a way to ...
-5
votes
0answers
14 views

How to make striped border for entire page using css [closed]

i am trying to make a border for the entire page but it has to be striped. any ideas how i can go about that. Appreciate your help. What i want is a striped border on the page. the border is to be ...
-2
votes
1answer
17 views

what kind of type is BorderThickness?

I have a calendar and I want to set the border of the day in some color according to some conditions. For that I use a converter. However, when the converter return 2, the broder is not shown, but if ...
1
vote
1answer
31 views

Border color change on span/button hover

I have a button that has a span class within it. The span class (floated left) needs to have a border right of the '+' icon. The issue that I'm coming across is that when i hover over the button, the ...
0
votes
0answers
27 views

Android: Little layout issue? Why isn't it transparent

I have an interesting issue: <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
0
votes
1answer
21 views

huge div border rendering issue

I have a really weird case where borders and background image is not rendered past some point in some huge divs. I have included a sample in the following fiddle! http://jsfiddle.net/hg333/ <div ...
0
votes
1answer
40 views

Create a Popup window in button click -WPF

Good day to all.. Basically i have window with transaction details shown in a grid based on dates. On a button click should open a window where i can select multiple options such as "Current Month", ...
0
votes
3answers
23 views

CSS Border height different on each side

I am wondering if a border like this would be possible in pure css? There will be no content within this box, only an image within the future. I would like to achieve this in pure CSS, with no ...
2
votes
2answers
30 views

CSS Border rendering

I like to know if is possible to specify the border drawing style (not border-style) with CSS (I need that works at least on webkit). Well, I have an element like div.border and it have four-side ...
0
votes
2answers
32 views

How to add borders to components when using GroupLayout?

For example, I have two radio buttons and I want a border around them so that the UI looks clearer? Tried searching but didn't find anything useful. Thanks!
0
votes
2answers
28 views

Border-radius Safari

I am making a banner where people can upload an image. Before the upload it you see the image. With just a standard html code <div id="box"><img src="blah blah" /></div> The CSS: ...
1
vote
1answer
53 views

How do I create a fade-out transition with a WPF border on mouse hover?

I am trying to create a Border that shows/hides the border itself on hover. The desired effect is to show a border around content on hover and when the mouse leaves the area, the border fades out. I ...
2
votes
1answer
32 views

Set Border color of round corner div in IE?

I am having problem to set the div border , which using the border-radius.htc. It works in all browsers except IE. I referred this site to make a div as rounded corners ...
1
vote
2answers
38 views

Different border with title text and transparent background

I want to create a box like this with random text title: http://oi44.tinypic.com/1tu4xz.jpg I know how to code this with static (unchanged) text, but k dont know how to do this effective with ...
3
votes
2answers
67 views

Is a block formatting context created by an element with a border?

From W3C and MDN I know that a block formatting context is created by one of the following: the root element or something that contains it floats (elements where float is not none) absolutely ...
0
votes
2answers
33 views

Border image for just the bottom using CSS

I am wanting to use an image as a border but just for the bottom - can this be achieved in CSS? I have briefly researched it and im reading about slices etc but I dont quite understand it. I thought ...
0
votes
1answer
27 views

Border-bottom issue (expanding downwards on hover)

I'm working on a navigation, and I can't seem to figure out how to make the bottom border increase in size upwards, instead of expanding downwards (which in turn extends my header a few pixels), I ...
0
votes
2answers
26 views

Changing borderStyle with javascript DOM1

I just need the images to appear with a 2px, green, solid border once the images have loaded on the page. I have this: img = getElementsByTagName("img"); for(i = 0; i < img.length; i++) { ...
0
votes
1answer
40 views

how to stop custom UITableViewCell covering UITableView border lines

Perhaps this is a very simple answer, but I have searched everywhere and it seems everyone is trying to do the opposite of what I am trying to do. I have a custom UITableViewCell as defined below. ...
0
votes
1answer
41 views

Getting rid of Twitter Bootstrap thumbnail border

I'm trying to get rid of the default thumbnail thin grey border in Twitter Bootstrap. I can target the borders, for example if I use: .thumbnails > li { border:1px solid red; } all the ...
0
votes
2answers
37 views

How do I Add border to text in inputfield

I'm trying to find out how I can customize the text in a input field with css. What I want to do is to add a border to the text written in the input field. I can customize the font-family, font-size ...
0
votes
2answers
32 views

Irregular responsive border for image?

So say I have a border like this: How would I go about making it responsive together with my image? my initial idea was to have something like this: <div class="frame"> <img ...
0
votes
0answers
55 views

powershell tabControl borders

I've created a simple tool with powershell using forms to launch some routine checks. Now I'm trying to expand this tool and I want to use tabControl element # container $TabControl_default = ...
1
vote
4answers
27 views

Add border to circle image

I've added a normal square image to my website and made it into a circle with border-radius and then have tried to add a circle border around it but it only seems to work on Chrome. Any suggestions on ...
0
votes
1answer
39 views

HTML/CSS - Extra menu spacing when viewed from mobile

I have an unordered list-based menu system on my site. On desktop, it's exactly as I want it. No borders or spacing: Then, one mobile (I am testing with iPad/iPhone), it looks like this: With a ...
0
votes
1answer
16 views

iFrame get rid of white bordering

Here is a screenshot to help explain what I'm asking. Orange is the iFrame total size. Green is the iFrame content size and the blue is the text (not visible in this screen shot) As you can ...
0
votes
1answer
33 views

Custom dashed border.

I need to make something like this. I cant use border: dotted or border: dashed, because: 1) Resulting dots and dashes not exactly the same size as in example and spacing not right either. 2) ...
0
votes
2answers
32 views

CSS Animation: changing the border-width of an element

I am trying to animate the border-width of a circle to give it a pulsating effect. So let's say we define this circle like this: .bubble { width: 100px; height: 100px; border-radius: 50%; ...
2
votes
2answers
56 views

white border for popup on blackberry

I want to add a white border for popup screen on blackberry. I use this code to add the border Popup x = new Popup(); Border borderFocus = BorderFactory.createRoundedBorder(new XYEdges(10, 10, 10, ...
0
votes
0answers
37 views

Custom Header in WPF DataGrid with “native” Border?

I am currently desinging a DataGrid in WPF and have a annoying problem: I am overwriting the background color of the Row / Column Headers to display them depending on a binding. That works fine - but ...
0
votes
0answers
12 views

UIImageView Border Using Storyboard

I was wondering how to create a border for all of my Images (in Image Views). I want it to be a white border that is the same size and will be for all images. How would this work (storyboard ...
0
votes
1answer
41 views

WPF Set the Corner Radius of a Border through a Converter

I would like to set the bottom Corner Radius of a ListView Item for just the "last" item in the list. I've attempted to do so with a Converter (which in fact finds the last row), but to no avail. The ...
0
votes
3answers
22 views

Specifying top and bottom border with one css rule

Is it possable to set the top and bottom borders with 1 css rule, in a similar way to how you can set margin: 10px 0; instead of having to write two separate rules as below. border-bottom: 1px solid ...
1
vote
1answer
35 views

How do I overlay a gradient (background) on top of a border?

I've got a heading with borders extending sideways (inspired by Chris Coyiers example). I'm trying to fade the borders out by overlapping them with a gradient background. However, I'm not able to make ...
1
vote
2answers
19 views

Content outside “window” not visible?

I'm trying to make a website with a top border running across, but when the browser window is compressed, and horizontal scroll-bars appear, the border at the top is visible only when the scrollbars ...
0
votes
1answer
21 views

CSS3 Make a Descendant Element Turn off a Parent's Border Styling

I know that text-decoration-skip can be used to make descendant elements turn off their parent's text decorations such as underlining, line-through, and overline, but is there a comparable way to turn ...

1 2 3 4 5 37