border

jQuery resize losing border

Hi everyone! I'm having a few issues with the jQuery UI Resize loosing the border on the textarea I'm resizing (see images). Can you help? Borders showing as intended: Right border hidden: Firebug screenshot: (http://i.imgur.com/TyR43.png) ...

How to make rounded corners on image in uiimageview?

I have a uiimage in a uiimageview. the uiimage doesn't fill the entire uiimageview. I'm trying to have a border with rounded corners, but just around the uiimage, not the entire uiimageview. Can't figure out how to get it. I have homeButtonImage.layer.cornerRadius = 5; homeButtonImage.layer.masksToBounds = YES; homeButtonImage.laye...

How do you find the size/rect of a uiimage?

I have a UIImageView that has a UIImage (obviously), and I want to get the dimensions of the UIImage so that I can draw a border with rounded edges for just the UIImage (not the entire UIImageView). Thanks. ...

Swing rotate border (fixed)

Hi, i'm working on a swing program to display several pictures. And one can rotate the picture (implemented each as a JComponent). Problem is, when a picture gets rotated, the border of the JComponent doesn't change so that the picture gets clipped. Is there any way to also rotate the border so that the picture can be fully drawn? (...

Inline border-top with CSS?

I want to make a button like this: ----- |+++++| |TEXTT| | | ----- How do I get the ++++ border? My current code: .toolbar-top a.button, .toolbar-bottom a.button { display: inline-block; margin: 7px; padding: 0px 9px; height: 28px; line-height: 28px; /* LINE 8 */border: solid 1px #525356; -webkit-border-radius: 5...

How do I put 3 borders in one line using CSS?

Possible Duplicate: How to display 3 boxes in the same line? Hi, I need to put three borders in one line to showcase something. I am able to put two using th float:left and margin-left tag but the third one appears in the next line. How do I do it? Thanks. ...

Table Border Setting

how to set table border or table's outside border with some color and size but the cells of the table have border size=0 ---------------------- | ------- ------ | | | 1 | | 2 | | | ------- ------ | | 3 | ---------------------- container 1 & 2 : which are the cells...

How can I draw a border with squared corners in wpf?

You know, like Battlestar paper! I have given this a few goes but now I'm stumped. I haven't yet gone down the geometery route, so I'll explain this as best as I can. I'd like the border to be sizable, but contain fixed-size corners, just like CornerRadius does. Instead of rounded corners, I'd like them to be tapered, like: /---------\...

Bottom borders on WPF Grid

Hi everyone, I've got a pretty simple question regarding the WPF Grid Control. I'd like to set a bottom border on each row in the grid, but can only find how to put all 4 borders around each cell.. my code is quite simple <Grid Height="174" HorizontalAlignment="Left" Margin="23,289,0,0" Name="grid2" VerticalAlignment="Top" Width="730...

CSS, <table> borders: How do I prevent a border added to a table cell from displacing neighboring cells?

I have cells that have borders of width 1px and width 2px, and the rest have no borders. The bordered cells subtly adjust the spacing of surrounding cells. I don't want this. How do I prevent it, while still enabling different sizes of borders for different cells? ...

How can I define fieldset border color?

I want to set border color of field set. I am using class but this is not working properly because i want to remove fieldset default border color. so how can I use fieldset border color. <fieldset class="field_set"> <legend>box</legend> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ...

wxPython for Python: How to remove the 1px border under a toolbar?

Hello. I need your help. I have a toolbar, which is next to a slider (screenshot: http://i54.tinypic.com/w2n6ag.jpg) and wxPython automatically puts a tiny 1px border under the [Play/Pause/Stop | Previous/Next] buttons. This does not look nice at all so is it possible to remove it/set it to 0px? Thank you very much. Here is part of...

CSS: How to define a centered div with endless vertical borders and an initial height of 100%?

Hi there! First question on SOF, please be gentle if this may be a stupid question. :) Havent found a solution, neither here nor on the web. I got some trouble with CSS. I pasted my code at the end of this post but first Ill explain what Im trying to accomplish: I want to build a centered fixed-width content area with endless vertical...

css a:link style text and images

I've got a quick css questions that bugging me, and I can't seem to figure out right now. I've styled the links on my page to have a bottom border on on hover, but it the bottom border is appearing on image that have links as well and I can't figure out how to keep the border from appearing on the images. Here is what I currently have....

border for each submenu item on rollOver using flex3

hi, i would like to add border around each menuitem and submenu item in the menuBar component using flex3. thanks in advance. akki ...

problem with width:50% when border != none (CSS)

problem with width:50% when border != none take a look http://jsfiddle.net/5nYSf/ result should be like this ...

remove header separators lines in flash DataGrid (actionscript 2)

Hi, I have a DataGrid component in flash (actionscript 2). I want to remove the separators lines in the header of the grid- searched for hours with no luck. thanks. ...

How to simulate Chrome/Safari border around active input or textarea on other elements such as divs or iframes?

I was using simple textarea element and then replaced it with iframe with designMode='on' to give user the possibility to mark some text and make it italic. But I still want an iframe to look like textarea, so I need a border around it similar to that which appears in Chrome and Safari when textarea is active. How can I achieve such an e...

div padding, margin ??

Hi, I am a iPhone developer stuck with some basic CSS properties ;) I want to show something like this: This is what I have: <div class="cell"> <div class="cell_3x3_top"> <div class="cell_3x3_type rounded_left">type</div> <!--UPDATED:2010/09/29--> <div class="cell_3x3_title rounded_right">title</div><!--UPDATED:20...

How to display an array of UILabels?

I have a list of items I'd like to show in a UITableViewCell. Right now, I'm simply using a cell.textLabel with commas separating each value, but I'd like to do something a little more dynamic. How would I achieve something like this? Would it be an array of UILabels with borders and radius on those borders? Thanks for your ideas. ...