active questions tagged center - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T04:17:10Z http://stackoverflow.com/feeds/tag/center http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1895286/crop-a-uiimage-from-the-center-outwards 0 Crop a UIImage from the Center outwards? iSkythe 2009-12-13T01:25:53Z 2009-12-13T01:25:53Z <p>I am making a camera app which includes digital zoom. I have a slider (zoomSlider) that has a minimum value of 1 and a maximum value of 4. When the user taps the camera button, it takes a picture, and then I crop it for the zooming. I have two problems:</p> <p>How do I crop the exact middle of the image? (eg. 2x zoom, Rect would be centered with dimensions of 600x800 (for iPhone 2G/3G))</p> <p>When I do this, it rotates the image. I make up for it by rotating the UIImageView it's in, but this causes a portrait picture to become landscape and vice versa.</p> <p>Here is my code:</p> <pre><code>- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { if ([mediaType isEqualToString:@"public.image"]){ UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"]; CGRect clippedRect = CGRectMake(600, 450, image.size.width/zoomSlider.value, image.size.height/zoomSlider.value); UIImage *cropped = [self imageByCropping:image toRect:clippedRect]; CGRect croppedImageSize = CGRectMake(0, 0, image.size.width/zoomSlider.value, image.size.height/zoomSlider.value); [cropped drawInRect:croppedImageSize]; zoomPhoto.frame = croppedImageSize; zoomPhoto.image = cropped; CGAffineTransform rotateTransform = CGAffineTransformRotate(CGAffineTransformIdentity, RADIANS(90.0)); zoomPhoto.transform = rotateTransform; } - (UIImage *)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)rect { CGImageRef imageRef = CGImageCreateWithImageInRect([imageToCrop CGImage], rect); UIImage *cropped = [UIImage imageWithCGImage:imageRef]; CGImageRelease(imageRef); return cropped; </code></pre> <p>}</p> http://stackoverflow.com/questions/1871677/how-to-integrate-bugzilla-and-hp-quality-center 0 how to integrate bugzilla and HP quality center? Anitha 2009-12-09T05:03:20Z 2009-12-09T05:16:54Z <p>I'm working on integrating bugzilla with Hp Qc .. i'm performing this by using perl script by directly manipulating database using sql commands.. I want to use the webservices of bugzilla. I have gone thru the bugzilla webservice Api but tat wasnt enough to get started. I'm a beginner and this is first project of my career . please guide me thru .. </p> http://stackoverflow.com/questions/1835348/center-gtk-dialog-on-gtk-window-in-gtk-on-windows 0 Center Gtk.Dialog on Gtk.Window in Gtk# on Windows Sebastian P.R. Gingter 2009-12-02T19:49:12Z 2009-12-02T19:49:12Z <p>Hi,</p> <p>I have a Gtk Dialog which should pop up over my applications main window.</p> <p>I tried the following:</p> <ul> <li>dialog.TypeHint = TypeHint.Dialog;</li> <li>dialog.Parent = applicationMainWindow;</li> <li>dialog.TransientFor = applicationMainWindow;</li> <li>dialog.SetPosition(WindowPosition.CenterOnParent);</li> </ul> <p>In any combination I could think of. Nevertheless, when calling dialog.Run(), it pops up where it likes (at least on Windows, and thats where it actually matters in my case).</p> <p>What do I need to do so that this dialog is really placed over my main window? Ideally it would be centered, but at least atop of it would be also great right now. Well, at least on the same monitor would be quite good as a start...</p> <p>Thanks a lot for your answers.</p> http://stackoverflow.com/questions/1798817/why-is-the-center-tag-deprecated-in-html 4 Why is the <center> tag deprecated in HTML? Andreas Grech 2009-11-25T18:00:48Z 2009-11-26T04:11:07Z <p>I am just curious as to why the <code>&lt;center&gt;</code> tag in HTML was deprecated.</p> <p>The <code>&lt;center&gt;</code> was a simple way of quickly center-aligning blocks of text and images by encapsulating the container in a <code>&lt;center&gt;</code> tag, and I really cannot find any simpler way on how to do it now.</p> <p>Anyone know of any simple way on how to center "stuff" (not the <code>margin-left:auto; margin-right:auto;</code> and width thing), something that replaces <code>&lt;center&gt;</code> ? And also, why was it deprecated?</p> http://stackoverflow.com/questions/1798936/centering-float-left-divs-in-the-body 0 Centering float left div's in the body Andy 2009-11-25T18:17:52Z 2009-11-25T21:29:03Z <p>hello guys!</p> <p>i have this piece of code</p> <pre><code>&lt;body&gt; &lt;? while.. (blah blah blah){ ?&gt; &lt;div class="product"&gt; something &lt;/div&gt; &lt;? } ?&gt; &lt;/body&gt; </code></pre> <p>and the css file is</p> <pre><code>.product{ width:350px; float:left; } </code></pre> <p>the problem is that body doesn´t have a width, well... actually it has, 90%, but my problem is on the different resolutions, it works perfect for me (1680px width) but when i switch to 1024 as example, the products seems to be off (aligned to the left)</p> <p>is there any posibility to center those divs with a non static with on their parent container?</p> http://stackoverflow.com/questions/1779479/centering-content-in-flex-4 0 Centering Content in Flex 4 ruedaminute 2009-11-22T18:16:37Z 2009-11-22T18:30:14Z <p>Hi, I'm building a custom component that extends SkinnableContainer. I can center the content either vertically or horizontally inside it, but not both-- and that is what I need. </p> <p>I'm setting the layout to HorizontalLayout for the component and setting verticalAlign to middle.</p> <p>Then I'm creating a canvas to surround another component that goes inside this component, and setting that canvas width to 100%, and then setting textAlign=center, but no dice.</p> <p>Any help is appreciated.</p> http://stackoverflow.com/questions/432037/how-do-i-center-text-horizontally-and-vertical-in-a-textview-in-android 1 How do I center text horizontally and vertical in a TextView in Android? J. Pablo Fernández 2009-01-11T00:27:55Z 2009-11-21T12:25:56Z <p>How do I center text horizontally and vertical in a TextView in Android? So that it appears exactly in the middle of the screen.</p> http://stackoverflow.com/questions/1760586/how-to-align-the-jquery-maphilight-to-center 0 How to align the jquery maphilight to center? melaos 2009-11-19T02:49:09Z 2009-11-19T04:12:20Z <p>Hi guys, yes i know how silly and dumb this question is, but i have been looking around and i can't find how to align the image so that i can position it in the middle <a href="http://plugins.jquery.com/project/maphilight" rel="nofollow">for the excellent jquery maphilight</a>, what i found is after the class="map" is applied to the image, it will automatically shift to the left. </p> <p>i can find any options to set the position too. Please help. thanks!! </p> http://stackoverflow.com/questions/346940/two-html-tables-side-by-side-centered-on-the-page 2 Two HTML tables side by side, centered on the page dland 2008-12-06T22:55:41Z 2009-11-11T18:00:28Z <p>I have two tables on a page that I want to display side by side, and then center them within the page (actually within another div, but this is the simplest I could come up with):</p> <pre><code>&lt;style&gt; #outer { text-align: center; } #inner { text-align: left; margin: 0 auto; } .t { float: left; } table { border: 1px solid black; } #clearit { clear: left; } &lt;/style&gt; &lt;div id="outer"&gt; &lt;p&gt;Two tables, side by side, centered together within the page.&lt;/p&gt; &lt;div id="inner"&gt; &lt;div class="t"&gt; &lt;table&gt; &lt;tr&gt;&lt;th&gt;a&lt;/th&gt;&lt;th&gt;b&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;16&lt;/td&gt;&lt;td&gt;25&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;div class="t"&gt; &lt;table&gt; &lt;tr&gt;&lt;th&gt;a&lt;/th&gt;&lt;th&gt;b&lt;/th&gt;&lt;th&gt;c&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;15&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;13&lt;/td&gt;&lt;td&gt;104&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="clearit"&gt;all done.&lt;/div&gt; &lt;/div&gt; </code></pre> <p>I understand that it's something to do with the fact that the tables are floated, but I'm at a loss as to understand what I'm missing. There are many web pages that describe something like the technique I show here, but in any event it doesn't work; the tables cling stubbornly to the left hand margin.</p> http://stackoverflow.com/questions/1691928/svg-center-of-path 1 svg: center of path sol 2009-11-07T03:48:44Z 2009-11-07T11:33:46Z <p>Hi</p> <p>I'm trying to draw a label on a polygon of an svg file. The problem I'm facing is to find out roughly the center of this polygon to place the label, as the path's coordinates are in svg format and need to be parsed. Is there an easier way to determine the center of an svg polygon (maybe someone can point out a javascript library or a snippet)? I'm using Raphael javascript library to manipulate the svg, but it doesn't seem to go beyond the standard svg functionality.</p> http://stackoverflow.com/questions/1691203/center-wrapped-text-around-float 0 Center wrapped text around float Zeth 2009-11-06T23:22:55Z 2009-11-06T23:22:55Z <p>Hi,</p> <p>I have a site with a parent element that contains a right-floated image and a content div that wraps along and below it. I'm trying to center certain elements in the content div, but am having trouble getting non-IE browsers to recognize the available width. In other words, if I give the object a percentage width like "70%", non-IE browsers give it a width of 70% of the parent element, whether the space for the left content is comprised by the floated object or not. Here's simplified code to demonstrate the behavior:</p> <pre><code>&lt;style type="text/css"&gt; #wrapper {width: 800px; border: 1px solid #770000; padding: 15px} hr {width: 70%; margin: 5px auto;} #contentright {float: right; width: 400px; height: 200px; border: 1px solid #000000;} &lt;/style&gt; &lt;div id="wrapper"&gt; &lt;div id="contentright"&gt; &lt;/div&gt; &lt;div id="contentleft"&gt; &lt;p&gt;TEXT TEXT TEXT&lt;/p&gt; &lt;p&gt;TEXT TEXT TEXT&lt;/p&gt; &lt;p&gt;TEXT TEXT TEXT&lt;/p&gt; &lt;hr&gt; &lt;p&gt;TEXT TEXT TEXT&lt;/p&gt; &lt;p&gt;TEXT TEXT TEXT&lt;/p&gt; &lt;p&gt;TEXT TEXT TEXT&lt;/p&gt; &lt;p&gt;TEXT TEXT TEXT&lt;/p&gt; &lt;hr&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>I'd like it to appear the way that it does in IE, but I'd be shocked if IE was the one browser rendering it correctly. If I set an explicit width, Firefox then centers the object (<code>&lt;hr&gt;</code> in my example) in the way that I'm looking for, but Chrome still centers it based on the wrapper. Any help?</p> http://stackoverflow.com/questions/722613/latex-centering-a-table-wider-than-the-text-column 2 LaTeX: centering a table wider than the text column Zequj 2009-04-06T18:27:09Z 2009-11-04T12:58:11Z <p>I'm including a table in my LaTeX document and the centering works fine if the table isn't wider than the text column above it, but when the table is wider, the left side of the table sticks to the left side of the text column, and the additional width of the table is on the right side of the page, how can I center the table?</p> http://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div 0 Floating another div next to a main centered div Mike 2009-05-08T15:58:55Z 2009-11-03T21:00:02Z <p>Ok so I have a website and the entire thing is wrapped in a container. This container is centered with margin:auto. I would like to float a piece of content to the right of this centered container and have it sort of stick to the side of it no matter if the user resizes the browser window, etc. I'm wondering if there's a real simple way to do this rather than adding another huge div, giving it width and floating the centered portion to the left and the piece of content to the right. Thanks!</p> http://stackoverflow.com/questions/1496015/is-it-possible-to-center-content-in-a-uiscrollview-like-apples-photos-app 0 Is it Possible to Center Content in a UIScrollView Like Apple's Photos App? Jonah 2009-09-30T03:41:00Z 2009-11-03T17:26:39Z <p>I have been struggling with this problem for some time and there seems to be no clear answer. Please let me know if anyone has figured this out.</p> <p>I want to display a photo in a UIScrollView that is centered on the screen (the image may be in portrait or landscape orientation). </p> <p>I want to be able to zoom and pan the image only to the edge of the image as in the photos app.</p> <p>I've tried altering the contentInset in the viewDidEndZooming method and that sort of does the trick, but there's several glitches.</p> <p>I've also tried making the imageView the same size as the scrollView and centering the image there. The problem is that when you zoom, you can scroll around the entire imageView and part of the image may scroll off the view.</p> <p>I found a similar post here and gave my best workaround, but no real answer was found:</p> <p><a href="http://stackoverflow.com/questions/638299/uiscrollview-with-centered-uiimageview-like-photos-app">http://stackoverflow.com/questions/638299/uiscrollview-with-centered-uiimageview-like-photos-app</a></p> http://stackoverflow.com/questions/1659578/vertical-aligning-an-absolute-positioned-div-inside-a-containing-div 1 Vertical aligning an absolute positioned div inside a containing div Anon 2009-11-02T05:40:10Z 2009-11-02T18:40:48Z <p>I'm using the jQuery Cycle plugin to rotate images in a slideshow type fashion. That works fine. The problem I'm having is getting these images (of different sizes) to center in the containing div. The images are inside a slidshow div that has it's position set to absolute by the Cycle plugin.</p> <p>I've tried setting line-height/vertical-align and whatnot but no dice. Here is the relevant HTML and CSS</p> <p>HTML:</p> <pre><code>&lt;div id="projects"&gt; &lt;div class="gallery"&gt; &lt;span class="span1"&gt;&amp;#9668;&lt;/span&gt;&lt;span class="span2"&gt;&amp;#9658;&lt;/span&gt; &lt;div class="slideshow"&gt; &lt;img src="images/img1.png" /&gt; &lt;img src="images/img1.png" /&gt; &lt;img src="images/img1.png" /&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>CSS:</p> <pre><code>#main #home-column-2 #projects { width: 330px; background: #fefff5; height: 405px; padding: 12px; } #main #home-column-2 #projects .gallery { width: 328px; height: 363px; position: relative; background: url('images/bg-home-gallery.jpg'); } #main #home-column-2 #projects .gallery img { position: relative; z-index: 10; } </code></pre> <p>And in case you want to see it, the jQuery:</p> <pre><code>$('#home-column-2 #projects .gallery .slideshow').cycle( { fx: 'scrollHorz', timeout: 0, next: "#home-column-2 #projects .gallery span.span2", prev: "#home-column-2 #projects .gallery span.span1" }); </code></pre> <p>Any ideas on getting these images to center?</p> http://stackoverflow.com/questions/1611992/center-a-xul-dialog-to-screen 2 Center a xul dialog to screen John Sheares 2009-10-23T08:05:22Z 2009-10-28T22:30:03Z <p>In a dialog, I resize some images and then force the window to sizeToContent. Then, I want the dialog to center itself to the screen. How can I do this? </p> http://stackoverflow.com/questions/1608693/centering-a-page-issue 0 Centering a Page issue 404error 2009-10-22T17:19:31Z 2009-10-23T23:23:49Z <p>Ok, lets see if i can explain this. My page content has a width of 960px. It is centered in another div that has a width of 1426px (#siteWrap).</p> <pre><code>#siteWrap{ margin:0px auto; width:1426px; background: url(../images/bg.jpg) no-repeat ; } </code></pre> <p>What i need to find out is how to get #siteWrap to center on a page regardless of screen resolutions. Most of my visitors are on a 1024x768 screen resolution. When i test this page on that resolution i am forced to scroll left to right to get to the site content. </p> <p>Any help would be appreciated.</p> http://stackoverflow.com/questions/1585768/flex-3-component-using-x-y-as-center-not-topleft 0 flex 3 component using x y as center, not topleft Jean Fabre 2009-10-18T19:16:45Z 2009-10-18T19:32:02Z <p>Hi,</p> <p>How can I extend components like buttons to use x and y value as the center of the component, not the top left?</p> <p>Thanks,</p> <p>Jean</p> http://stackoverflow.com/questions/1418838/html-making-a-link-lead-to-the-anchor-centered-in-the-middle-of-the-page 0 HTML: Making a link lead to the anchor centered in the middle of the page noam 2009-09-13T21:09:19Z 2009-10-08T13:18:18Z <p>I have a link to an anchor on my html page. When the link is clicked it causes the page to scroll to the anchor so that the anchor is at the very top of the visible part of the page. How can I make the page scroll so that the anchor will be in the middle of the page?</p> http://stackoverflow.com/questions/1480510/css-equal-height-divs-without-margin-hack 0 CSS: Equal height divs without margin hack Paul Tarjan 2009-09-26T05:38:09Z 2009-09-26T07:58:05Z <p>Can you make two divs have equal height without </p> <p>1) margin hacks because then I can't have a border : </p> <pre><code>margin-bottom : -500px; padding-bottom : 500px; </code></pre> <p>2) Javascript because then there is flicker on the page for non-cached users.</p> <p>3) Fixed height because then I can't add more content dynamically.</p> <p>It is for this page <a href="http://www.stdicon.com/" rel="nofollow">http://www.stdicon.com/</a> for the two divs in the middle (which are currently sized in JS, but I'd prefer a pure CSS solution)</p> http://stackoverflow.com/questions/1192048/asp-net-how-to-center-exported-image-in-excel 1 ASP.net How to Center Exported image in Excel Arny 2009-07-28T05:18:25Z 2009-09-25T17:48:46Z <p>Hi there,</p> <p>I have to export some images to excel, To center the images I use a table and colspan=4 to merge four columns of excel file,</p> <p>when I write a text to excel file it is easily get centered, but for image I tried every possible scenarios, like img algin="center" or and even put it inside a table and , but the result is the same.</p> <p>any ideas?</p> <p>Thanks in advance </p> http://stackoverflow.com/questions/1187556/center-exported-image-to-excel 0 Center Exported image to excel Arny 2009-07-27T10:52:13Z 2009-09-24T23:20:20Z <p>Hi there,</p> <p>I have to export some images to excel, To center the images I use a table and colspan=4 to merge for columns of excel file,</p> <p>when I write a text to excel file it is easily get centered, but for image I tried every possible scenarios, like </p> <p>or and even but the result is the same.</p> <p>any suggestions?</p> <p>Thanks in advance </p> http://stackoverflow.com/questions/1451071/how-can-i-get-the-current-zoom-level-in-a-uiscrollview 0 How can I get the current zoom level in a UIScrollView? Jonah 2009-09-20T14:00:28Z 2009-09-20T14:45:37Z <p>In an attempt to create a workaround for centering an image in a UIScrollView and make it behave as Apple's Photos app does, I need to get the current zoom level and use the number to calculate the amount the image should be inset at each zoom level. </p> <p>(Note: I am aware that some programmers are centering an image in a scrollview by centering the image in a UIView that is the same size as the scrollview. This does not give good results and I am trying to find out how apple made it work in the photos app.)</p> <p>So, anyone know how to get the current zoom level of the content in a UIScrollView?</p> http://stackoverflow.com/questions/1344169/center-image-in-a-div-too-small-for-it 1 center image in a div too small for it? Nathaniel 2009-08-27T22:49:58Z 2009-09-18T03:59:35Z <p>So I have a div in my body that's a percentage width, and inside that a div with inline style as follows:</p> <pre><code>text-align: center; margin-left: -15px; margin-right: -15px; overflow:hidden </code></pre> <p>As you can see, I have text-align center on, which would, if the image was small enough for the div, center the image. But the percentage width div is definitely not going to be big enough on my 1280x800 screen.</p> <p>The negative margins are to overcome some padding on it's parent div. The overflow:hidden makes things look like I want, not messy. So, it's kind of working like I want it, like the header image at <a href="http://www.onenaught.com/" rel="nofollow">onenaught.com</a>. It will become more visible on the right as you make the browser wider, but not expand from both sides, because it's not centered.</p> <p>So, I wander if there's any way to center the image. Know of any?</p> <p>Edit: page <a href="http://www.matthewfunkbarley.com/bio" rel="nofollow">here</a>. </p> http://stackoverflow.com/questions/1418560/html-div-on-the-centr 0 html - div on the centr Ockonal 2009-09-13T18:55:04Z 2009-09-13T19:22:30Z <p>Hello, how can i set div position at the center of the page with size, for example, 80%/80%.</p> <p><strong>UPD:</strong> margin: 0 auto; works, but only for horizontal alignment. And i also need vertical.</p> http://stackoverflow.com/questions/1394227/how-to-center-a-string-in-elisp 0 How to center a string in elisp? kjfletch 2009-09-08T14:05:22Z 2009-09-09T11:58:34Z <p>I would like to center justify a given input string to a given size so that what is produced is a string with padded spaces either side (left and right) of the input string.</p> <p>The code I have to do this:</p> <pre><code>(defun center-string (string size) (let* ((padding (/ (- size (length string)) 2)) (lpad (+ (length string) padding)) (lformat (format "%%%ds" lpad)) (rformat (format "%%%ds" (- size)))) (format rformat (format lformat string)))) </code></pre> <p>And some test cases:</p> <pre><code>(center-string "KJF" 10) =&gt; " KJF " (center-string "KF" 10) =&gt; " KF " (center-string "0123456789" 10) =&gt; "0123456789" (center-string "0123456789" 5) =&gt; "0123456789" ; Notice justifcation is ignored as input string too large. </code></pre> <p>Is there an existing elisp function to do this or a better method?</p> http://stackoverflow.com/questions/1205457/how-to-design-a-css-for-a-centered-floating-confirm-dialog 2 How to design a CSS for a centered floating confirm dialog? Vinzz 2009-07-30T09:23:58Z 2009-08-26T08:43:10Z <p>Hi there,</p> <p>I'm looking for a way to display a confirm dialog that's always centered on the page, and floating over the page.</p> <p>Tried that, but it's not 'always centered' at all, since the position is fixed:</p> <pre><code>.Popup { text-align:center; position: absolute; bottom: 10%; left: 27%; z-index:50; width: 400px; background-color: #FFF6BD; border:2px solid black; } </code></pre> <p>Any idea? Thanks </p> http://stackoverflow.com/questions/1324544/how-should-i-create-an-algorithm-for-the-centroid-of-any-system-windows-media-geo 1 How should I create an algorithm for the centroid of any System.Windows.Media.Geometry object? Giffyguy 2009-08-24T20:25:44Z 2009-08-25T22:32:30Z <p>I plan on having to split up the Geometry object into a series of simpler shapes, and combine their centroids using this formula:<br /> <img src="http://upload.wikimedia.org/math/e/9/7/e971da09a42ff4ebddec9f760fb504ab.png"/><br /> Mathematical details of this formula can be found in <a href="http://en.wikipedia.org/wiki/Centroid#Centroid_by_geometric_decomposition" rel="nofollow">this Wikipedia article</a>. </p> <p><b>NOTICE:</b> Don't be suprised if my view of the mathematics is incorrect. I haven't done any complex math past trigonometry, and I've never had to deal with Greek letters. I think I understand this one pretty well, but please just let me know if I've got it wrong. </p> <p><i>An informational note</i>: the centroid of a gometric shape or prism is not just the middle of the shape. It is the center of gravity, or center of mass. I assume that Geometry objects can encapsulate 3D prisms as well, so I may have to take this into account in the future, but for now I'm focusing on 2D Geometries only. For a 2D shape you have to imagine it being a stiff piece of paper with a given shape, and the centroid would be the point at which this piece of paper would balance on a needle. </p> <p>The first problem I'm faced with is that I need to find a way to accurately split any given Geometry object into simple-enough shapes, so this formula can work correctly. Does anyone have any ideas how this might be accomplished? Or is there a better procedure that will still work universally? </p> <p>The second problem I'm faced with is that after the geometry is split up, how do I go about finding the centroid of each piece? Each type of simple shape (triangle, quadrilateral, semicircle, etc) has its own centroid formula. Is there a way for me to figure which type of shape each piece is?</p> http://stackoverflow.com/questions/1269245/centering-floating-divs-within-another-div 2 Centering floating divs within another div Darren 2009-08-12T23:18:24Z 2009-08-25T17:48:21Z <p>I've searched other questions and, while this problem seems similar to a couple of others, nothing I've seen so far seems to address the issue that I'm having.</p> <p>I have a div which contains a number of other divs, each of which is floated left. These divs each contain a photo and a caption. All I want is for the group of photos to be centered within the containing div.</p> <p>As you can see from the code below, I've tried using both <code>overflow:hidden</code> and <code>margin:x auto</code> on the parent divs, and I've also added a <code>clear:both</code> (as suggested in another topic) after the photos. Nothing seems to make a difference.</p> <p>Thank you. I appreciate any suggestions.</p> <p>(For context, you can refer to the <a href="http://www.dayscharityevents.com/viewevent.php?id=3" rel="nofollow">live site</a>.)</p> <pre><code>&lt;div style="position: relative; margin: 0 auto; overflow: hidden; text-align: center;"&gt; &lt;h4&gt;Section Header&lt;/h4&gt; &lt;div style="margin: 2em auto;"&gt; &lt;div style="float: left; margin: auto 1.5em;"&gt; &lt;img src="photo1.jpg" /&gt;&lt;br /&gt; Photo Caption &lt;/div&gt; &lt;div style="float: left; margin: auto 1.5em;"&gt; &lt;img src="photo2.jpg" /&gt;&lt;br /&gt; Photo Caption &lt;/div&gt; &lt;div style="float: left; margin: auto 1.5em;"&gt; &lt;img src="photo3.jpg" /&gt;&lt;br /&gt; Photo Caption &lt;/div&gt; &lt;div style="clear: both; height: 0; overflow: hidden;"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/963823/how-can-i-center-something-if-i-dont-know-ahead-of-time-what-the-width-is 3 How can I center something if I don't know ahead of time what the width is? Chris 2009-06-08T07:50:43Z 2009-08-22T03:53:44Z <p>I am trying to center a paragraph tag with some text in it within a div, but I can't seem to center it using margin: 0 auto without having to specify a fixed width for the paragraph. I don't want to specify a fixed width, because I will have dynamic text coming into the paragraph tag and it will always be a different width based on how much text it is.</p> <p>Does anyone know how I can center the paragraph tag within the div without having to specify a fixed width for the paragraph or without using tables? </p>