Tagged Questions
-1
votes
1answer
62 views
What are the solutions for cropping an img in css, without a wrapper or distortion?
Following this question, I was wondering if there are any new solutions for cropping an <img> in css, without distorting it, whilst maintaining its aspect ratio (without adding a wrapper).
For ...
0
votes
1answer
28 views
modify & design croped image
I cropped an image in html & css . When i am coding a <span> tag the cropped image displayed. But I need to know how can I modify it.
I have the following code:
<style ...
0
votes
4answers
221 views
How to “crop” a rectangular image into a square with CSS?
I know that it is impossible to actually an image with CSS, which is why I put crop in quotes.
What I'd like to do is take rectangular images and use CSS to make them appear square without ...
1
vote
4answers
169 views
Resizing and cropping images with CSS
I have a site that has a bunch of different images to display, all of different resolutions and aspect ratios. Is there an easy way in CSS to resize and crop images to a certain resolution? For my ...
0
votes
1answer
98 views
CSS: How to crop image that has any size?
I have a website where users can upload their photos and I'd like to prepare a page, where I would display all uploaded images nicely sorted.
The problem is, that someone upload the picture in ...
2
votes
3answers
234 views
Using just CSS, crop .img keeping aspect without distortion
I have an image that has been placed inside a div. The div is 600 width and has a variable height.
I want my image to sit at the top of the div. If I make the width 590 the issue is that the image is ...
0
votes
1answer
30 views
Cropped images in my gallery but they are stacked on top of each other. How do I get them next to each other instead?
Here is the code:
<div class="crop">
<img src="image1.jpg" alt="image1.jpg" />
<img src="image2.jpg" alt="image2.jpg" />
</div>
.crop{
float:left;
margin:2px;
...
1
vote
1answer
299 views
CSS clip property - is there an alternative for cropping images?
I have an image gallery and I want the thumbnails to be cropped at 150px x 150px. The images aren't square - they are rectangular and all different sizes, so I can't set the width and height to 150px ...
0
votes
1answer
351 views
Crop thumbnail images for gallery
In my gallery, the thumbnails are 240 pixels wide, but their heights vary. Is there any way to crop the thumbnail images so that they are all 150 pixels high?
At the moment I've got this:
.gallery ...
1
vote
2answers
140 views
How to crop text with dynamic width, fluid layout?
How to crop text when the width of element is dynamic?
It's possible to crop text when width of element is fixed:
.my-class {
width: 100px;
white-space: nowrap;
overflow: hidden;
...
2
votes
1answer
45 views
Is it possible to crop the bottom of an element with a subtle curve?
I want to be able to cut off the bottom of a large div (about 2000px) with a curve about 60px deep. Currently I have implemented this by placing a transparent image over the top which cuts it off. The ...
1
vote
1answer
55 views
How to display a certain section of an image?
I am currently working on a rails app, to ease the process of events I host within the game of Minecraft. For those of you who don't know, in Minecraft multiplayer, everyone has a skin. This is what ...
1
vote
3answers
676 views
Viewing website on iPhone - Sizing Issue
I'm hoping there's a relatively simple fix for this. I've created a simple website for a client which displays as expected in all browsers. Developing a separate mobile site for the project was not ...
1
vote
5answers
2k views
Resize multiple images in a uniform size and maintains the ratio
I have multiple images width different sizes, and I want to resize them to fit in a box, and I want to maintain the ratio, and want the images to still look good.
The is 400px by 400px.
I have 8 ...
0
votes
4answers
7k views
Centre a header image regardless of page size
My webpage has a header image that always remains at the top of the window. When the window is maximised the header image is centred, but when viewing in a small window (or a smart-phone browser) the ...
3
votes
1answer
76 views
CSS-only formatting of variable-sized cropped field
I have a text string and a numeric ID that I want to display next to each other:
This is a String [123]
Seems simple enough, but I can't control the length of the string or the size of the container ...
3
votes
3answers
3k views
Scale image until either X or Y is the same as the container and then crop the rest
I am loading images in multiple places where the site theme will have them displayed in different sizes. I experimented with the CSS properties and found that I could scale the image using the height ...
1
vote
1answer
276 views
How do I crop the text horizontally?
I need my content in a specific container. If the content increases horizontally, the container should crop, and if the content increases vertically the container should expand. here is my code:
...
1
vote
4answers
764 views
How do I crop an image pulled from the Facebook API for display on a website?
I'm using JavaScript and the Facebook Graph API to pull random profile images to a website I'm working on, like so:
var image_src = "http://graph.facebook.com/"+newId+"/picture?type=large"
However, ...
4
votes
5answers
1k views
Avoid an image to go outside a div?
I have:
<div style="height:15px">
<img src="image" />
</div>
The image is bigger than 15px, so it's outside the div when you see it. How do I "crop" the image (show only the ...
2
votes
2answers
2k views
How do I prevent floated-right content from overlapping main content?
I have the following HTML:
<td class='a'>
<img src='/images/some_icon.png' alt='Some Icon' />
<span>Some content that's waaaaaaaaay too long to fit in the allotted space, but ...