In GUI (inc. web page) context, alignment refers to the positioning of visual elements. In programming context, alignment is the placement of objects on memory addresses, usually a multiple of some small factor.

learn more… | top users | synonyms (1)

118
votes
13answers
261k views

How to align a <div> to the middle of the page

I have a div tag with height set to 800px. When the browser width is greater than 800px, it shouldn't stretch the div but it should bring it to the middle of the page.
68
votes
1answer
12k views

How do I vertically center UITextField Text?

I am simply instantiating a UITextField and noticing that the text doesn't center vertically. Instead, it is flush with the top of my button, which I find kind of odd since I would expect the default ...
44
votes
4answers
79k views

How to align 3 divs (left/center/right) inside another div?

I want to have 3 divs aligned inside a container div, something like this: [[LEFT] [CENTER] [RIGHT]] Container div is 100% wide (no set width), and center div should remain in center ...
42
votes
5answers
20k views

Label Alignment in iOS 6 - UITextAlignment deprecated

Seems like UITextAlignmentCenter is deprecated in iOS 6. I still use it and works well, but it gives a warning. How can I fix this? label.textAlignment = UITextAlignmentCenter; Thanks.
35
votes
4answers
28k views

UILabel Align Text to center

How do I align text in a UILabel
30
votes
5answers
57k views

How to align footer (div) to the bottom of the page?

Can anyone explain how to align a footer div to the bottom of the page. From the examples I've seen, they all show how to make the div stay visible at the bottom, no matter where you've scrolled the ...
30
votes
4answers
21k views

GCC __attribute__((aligned(x)) explanation

i have the following code: #include <stdio.h> int main(void) { float a[4] __attribute__((aligned(0x1000))) = {1.0, 2.0, 3.0, 4.0}; printf("%p %p %p %p\n", &a[0], &a[1], ...
28
votes
2answers
50k views

How to center cell contents of a LaTeX table whose columns have fixed widths?

Consider the following piece of LaTeX code: \begin{tabular}{p{1in}p{1in}} A & B\\ C & D\\ \end{tabular} How can I make the contents of each cell aligned in the center of the cell rather ...
26
votes
7answers
838 views

Should I worry about the alignment during pointer casting?

In my project we have a piece of code like this: // raw data consists of 4 ints unsigned char data[16]; int i1, i2, i3, i4; i1 = *((int*)data); i2 = *((int*)(data + 4)); i3 = *((int*)(data + 8)); i4 ...
26
votes
3answers
2k views

Stacking Divs from Bottom to Top

when appending divs to a div with a fixed height, the child divs will appear from top to bottom, sticking at the top border. ┌─────────────────────────┐ │ Child Div 1 │ │ Child Div 2 ...
23
votes
3answers
27k views

What is the Auto-Alignment Shortcut Key in Eclipse?

What is the auto-alignment shortcut key in Eclipse?
23
votes
10answers
4k views

Why does the Mac ABI require 16-byte stack alignment for x86-32?

I can understand this requirement for the old PPC RISC systems and even for x86-64, but for the old tried-and-true x86? In this case, the stack needs to be aligned on 4 byte boundaries only. Yes, some ...
22
votes
4answers
11k views

Android: Align first item in Gallery to the left

When the Gallery first displays, it is centering the first item automatically. The behavior I want, is to left align the first item in the parent layout instead of centering it. How can I achieve ...
22
votes
4answers
2k views

alignment requirements for atomic x86 instructions

Microsoft offers the InterlockedCompareExchange function for performing atomic compare-and-swap operations. There is also an _InterlockedCompareExchange intrinsic. On x86 these are implemented using ...
21
votes
7answers
50k views

CSS way to horizontally align table

I want to show a table of fixed width at the center of browser window. Now I use <table width="200" align="center"> But Visual Studio 2008 gives warning on this line: Attribute 'align' is ...
19
votes
3answers
584 views

How to debug unaligned accesses on amd64 using Visual Studio?

I would like to debug and profile some 64-bit software performing unaligned accesses, like in the following example: int foo[2] = { 1, 2 }; *((int *)((char *)foo + 2)) = 3; The gcc way I know of ...
18
votes
9answers
7k views

Determining the alignment of C/C++ structures in relation to its members

Can the alignment of a structure type be found if the alignments of the structure members are known? Eg. for: struct S { a_t a; b_t b; c_t c[]; }; is the alignment of S = max(alignment_of(a), ...
18
votes
8answers
11k views

How to center icon and text in a android button with width set to “fill parent”

I want to have an Android Button with icon+text centered inside it. I'm using the drawableLeft attribute to set the img, this work well if the button has a width of "wrap_content" but I need to ...
17
votes
1answer
33k views

Are there CSS Alternatives to the Deprecated HTML Attributes “align” and “valign”?

In HTML5, the table attributes align and valign are deprecated in favor of alternatives through CSS. I am used to using <td align="center" valign="top">, but I want to change so I don't seem ...
17
votes
5answers
25k views

Align vertically using CSS 3

With CSS 3, are there any way to vertically align an block element? Do you have an example? Thank you.
17
votes
10answers
41k views

How to align input forms in HTML

This I am new HTML and I am trying to learn how to use forms. The biggest issue I am having so far is aligning the forms. Here is an example of my current HTML file: <form> First ...
17
votes
7answers
21k views

Right align Facebook like button

I am able to put a Facebook like button on my website, but how do I make it to be right-aligned within the div/iframe it is in? I tried applying various CSS properties, but I could not get anything ...
16
votes
2answers
21k views

How to label each equation in align environment?

I wonder how to label each equation in align environment? For example \begin{align} \label{eq:lnnonspbb} \lambda_i + \mu_i = 0 \\ \mu_i \xi_i = 0 \\ \lambda_i [y_i( w^T x_i + b) - 1 + \xi_i] = 0 ...
15
votes
3answers
7k views

How to change the positioning of a progress dialog?

I'm developing an android app and need to know how to change the positioning of a progress dialog. I need it to be positioned at the bottom of the screen instead of at the center like it is by ...
15
votes
3answers
18k views

Cross browser div center alignment using CSS

What is the easiest way to align a div whose position is relative horizontally and vertically using CSS ? The width and the height of the div is unknown, i.e. it should work for every div dimension ...
14
votes
8answers
5k views

Purpose of memory alignment

Admittedly I don't get it. Say you have a memory with a memory word of length of 1 byte. Why can't you access a 4 byte long variable in a single memory access on an unaligned address(i.e. not ...
14
votes
3answers
28k views

What is the best way to left align and right align two div tags?

What is the best way to right align and left align two div tags on a web page horizontally next to each other? I would like an elegant solution to do this if possible.
14
votes
2answers
26k views

Align <div> elements side by side

I know this is a rather simple question, but I can't figure it out for the life of me. I have two links which I've applied a background image to. Here's what it currently looks like (apologies for ...
14
votes
6answers
1k views

Determining maximum possible alignment in C++

Is there any portable way to determine what the maximum possible alignment for any type is? For example on x86, SSE instructions require 16-byte alignment, but as far as I'm aware, no instructions ...
13
votes
7answers
5k views

Mis-aligned pointers on x86

Can someone provide an example were casting a pointer from one type to another fails due to mis-alignment? In the comments to this answer, bothie states that doing something like char * foo = ...; ...
13
votes
5answers
5k views

Is there any guarantee of alignment of address return by C++'s new operation?

Most of experienced programmer knows data alignment is important for program's performance. I have seen some programmer wrote program that allocate bigger size of buffer than they need, and use the ...
13
votes
3answers
17k views

number several equations with only one number

How can I number several equations in a align environment using only one number? For example \begin{align} w^T x_i + b \geqslant 1-\xi_i \text{ if } y_i=1, \nonumber \\ w^T x_i + b \leqslant ...
13
votes
6answers
4k views

Aligned memory management?

I have a few related questions about managing aligned memory blocks. Cross-platform answers would be ideal. However, as I'm pretty sure a cross-platform solution does not exist, I'm mainly ...
12
votes
3answers
13k views

right align EditText android

I have an EditText in my application. I want to align the text in it to the right instead of the default left. I tried adding android:layout_gravity="right" but this doesn't seem to work. any ...
12
votes
3answers
8k views

How does one align code (braces, parens etc) in vi?

How do you prettify / align / format code in vi? What is the command? I have pasted in a hunk of code and I need to have it all formatted/aligned... obviously I am a vi neophyte. x
12
votes
1answer
10k views

How Does OpenCV ORB Feature Detector Work?

I want to implement a feature-based alignment algorithm using the ORB feature detector and extractor. So far, I extracted the features using ORB class from OpenCV ORB orb; ...
12
votes
3answers
6k views

Is there a way to set the text alignment of entire column in a table?

Is there a simple way to set the text alignment of all cells in the second column to right? Or is the only way is to set the alignment for each cell in the column? (Unfortunately, the align ...
12
votes
4answers
3k views

why is data structure alignment important for performance?

Can someone give me a short and plausible explanation for why the compiler adds padding to data structures in order to align it's members? I know that it's done so that the CPU can access the data ...
12
votes
1answer
2k views

Union element alignment

If I have a union, C standard guarantees that the union itself will be aligned to the size of the largest element. union U { long l; int i; short s; char c[2]; } u; But what does it ...
12
votes
3answers
4k views

Textview wrap around View

I'm trying to make my horizontal layouts take advantage of the room available. In an info showing activity I have a 'fact box' followed by a large box of text. I'd like the infobox to float right, ...
12
votes
1answer
301 views

How to align C for-loop body w/ GCC?

In our embedded architecture we have a 64-bit IAB (Instruction Alignment Buffer). In order to optimize the fetch sequence, it is required that the body of a loop will start aligned to an 8-byte ...
11
votes
4answers
40k views

android: how to align image in the horizontal center of an imageview?

I've tried all scaletypes, but all of them result in the image to be at the left corner of the imageview. <ImageView android:id="@+id/image" android:scaleType="centerInside" ...
11
votes
7answers
10k views

Vertically align div (no tables)

I can horizontally align a div and all the content looks nice. Looking to vertical align a div that does not contain any tables. I tried setting margin positions to some negative values inside of the ...
11
votes
2answers
23k views

How can I align all elements to the left in JPanel?

I would like to have all elements in my JPanel to be aligned to the left. I try to do it in the following way: JPanel panel = new JPanel(); panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS)); ...
11
votes
3answers
4k views

How to Vertically Center Images on a Line?

What's the best way to center icons on a line when the images are smaller than the line height? For example (styles inline for easier reading): <div style="line-height: 20px"> <img ...
11
votes
4answers
10k views

Android: How can you align a button at the bottom and listview above?

I want to have a button at the bottom of the listview. If I use relativeLayout/FrameLayout, it aligns but listView goes down to very botton. (Behind the button at the bottom) FrameLayout: ...
11
votes
2answers
265 views

How does a compiler know the alignment of a physical address?

I know that some CPU architectures don't support unaligned address access(e.g., ARM architectures prior to ARM 4 had no instructions to access half-word objects in memory). And some compiler(e.g., ...
11
votes
5answers
1k views

How to tell GCC that a pointer argument is always double-word-aligned?

In my program I have a function that does a simple vector addition c[0:15] = a[0:15] + b[0:15]. The function prototype is: void vecadd(float * restrict a, float * restrict b, float * restrict c); ...
11
votes
3answers
646 views

SSE, intrinsics, and alignment

I've written a 3D vector class using a lot of SSE compiler intrinsics. Everything worked fine until I started to instatiate classes having the 3D vector as a member with new. I experienced odd crashes ...
11
votes
2answers
2k views

Aligned types and passing arguments by value

Passing aligned types or structures with aligned types by value doesn't work with some implementations. This breaks STL containers, because some of the methods (such as resize) take their arguments by ...

1 2 3 4 5 47