Tagged Questions
The stretching tag has no wiki summary.
31
votes
6answers
17k views
CSS floats - how do I keep them on one line?
Hey, I want to have two items on the same line using 'float: left' for the item on the left.
I have no problems achieving this alone. The problem is, I want the two items to stay on the same line ...
2
votes
2answers
1k views
Setting a WPF control to expand to fill available space, and no more
How can I set up a WPF control to fill the available space in its parent's container, but not expand the parent?
The following snippet describes the layout I am attempting. I would like the Grid to ...
1
vote
2answers
80 views
Auto stretch div when it's default height/width is filled
my template is as follows:
.layout{
height:100%;
width: 70%;
position: fixed;
}
.header{
height:20%;
width: 100%;
}
.content{
height:60%;
width: 100%;
}
.footer{
height:20%;
width: 100%;
...
1
vote
2answers
228 views
Stretching and resize a div dynamically
I am trying to stretch div as soon as some text is loaded.I am able to do that by giving min-height:140 px and height:100% to its parent container. But content in my div is crossing its parent ...
1
vote
3answers
635 views
how to set the stretch the background image with CSS
how to stretch the background images using CSS for page backgrounds and for DIV & table backgrounds... so that if the window size changes the background image size should stretch (expand / ...
1
vote
2answers
405 views
implementing stretchable dialog borders in iphone sdk
I want to implement dialog borders that scale to the size I require the dialog to be. Perhaps there is a better more conventional name for this sort of thing. If there is, if someone would edit the ...
0
votes
1answer
26 views
Stretch the graph vertically
Here is a sandbox (http://jsfiddle.net/qeyqe/).
Here is a beautiful picture of what I expect saying «stretch the graph vertically».
So, I have an array of dots for my graph and a canvas with 100 px ...
0
votes
1answer
69 views
Can't stretch div when width is filled
I want to add auto stretch the content div and add horizontal scroll to the page when the width of the content is overfilled.
You can see the HTML/CSS here: http://jsfiddle.net/Rknbs/
HTML
...
0
votes
3answers
344 views
how to make image not stretching in UIImageView
i have an UIImageView, i was set the frame into x = 0, y = 0, width = 404, andh height = 712.
In my project, i need to change image in uiimageview dinamically.
i use this code to change the image :
...
0
votes
0answers
67 views
Is it possible to both vertically stretch and horizontally center a background image using CSS?
I have been able to vertically stretch the image so no matter the screen height, it's the same. I have also been able to separately center the background image horizontally, but when I try to do both ...
0
votes
1answer
97 views
How to create the resolution specific listbox?
I am developing silverlight application. I have a listbox in my application. I am doing dynamic binding with that listbox. My xaml and code behind code for dynamic binding is present in the following ...
0
votes
4answers
453 views
How to strech UIImageView (iphone dev.)?
I'm studying Objective-c for several months, so I'm beginner. Help please...
I have an image (vertical gradient) 253 by 80px. And I want to stretch it to the screen width.
So, how can I make ...
0
votes
2answers
137 views
How to make a div with position:fixed occupy the entire parent width (and resize with it)?
See this fiddle: http://jsfiddle.net/eEe2C/2/
The green row 1 is fixed but does not stretch the entire parent width which the other blue rows do. Think of row 1 as the column headers in a grid. It ...
0
votes
1answer
413 views
Silverlight TreeView Disable Horizontal Stretching
I have a TreeView and I'm attempting to confine it to the dimensions of its parent. I'm using SL4 TextTrimming to trim the TextBlock that displays in the template however I'm not seeing the width of ...
0
votes
0answers
74 views
jQuery lightbox plugin problem
i'm using this plugin from the following url:
http://leandrovieira.com/projects/jquery/lightbox/
the problem: when resizing the browser window, the image will always display in 100% size and overlap ...
0
votes
0answers
319 views
Background Image not stretched completely in IE7 to fit parent div
I am new to html and stuck badly on one problem.
I am trying to fit my background image to its parent container but it seems it does not occupy the full space of its parent container in IE7. "I put ...
0
votes
3answers
214 views
How to let text adapt to a set table width instead of stretching the table?
I thought that this would make a table with a set width, and that text would automatically try to fit in by starting on a new line. However, the table still gets stretched by long lines of text.
...
0
votes
2answers
941 views
StretchableImageWithLeftCapWidth stretching wrong portions
I am trying to use a UIImage with stretchableImageWithLeftCapWidth to set the image in my UIImageView but am encountering a strange scaling bug. Basically picture my image as an oval that is 31 pixels ...
0
votes
5answers
717 views
Difference between stretching and scaling an image
Can anybody please tell me what is the exact difference between stretching and scaling an image? Because you can anyway set the size of image and imageView both to match your requirements.
0
votes
1answer
1k views
Stretch Bitmap without anti-aliasing
I found this example and used it http://stackoverflow.com/questions/1082884/how-do-you-resize-a-bitmap-under-net-cf-2-0/1082890#1082890
However my image looks horrible because of anti aliasing. It no ...
0
votes
3answers
358 views
Avoid TextBox vertical stretching
How can I avoid TextBox vertical streching in following example:
<StackPanel Orientation="Horizontal">
<Button Height="40">OK</Button>
<TextBox ...