0
votes
2answers
47 views

Vertical align and line-height in css

I have two probably easy CSS questions here: http://web288.merkur.ibone.ch/klingler/ How can I get the © Klingler Fahrzeugtechnik AG 2013 in the footer vertically aligned to the bottom? I tried ...
1
vote
1answer
51 views

Vertical & horizontal flow with line height on <small> tag

I'm sorting out my typography for a new website and have a strange occurrence with the <small> tag - it's throwing my line-height out. Everything else is fine (heading tags, paragraph etc) but ...
1
vote
0answers
141 views

Titillium Web Font applied to Select element

I have to use Titillium Web font for a Select element inside a web-page, and I have also to use specific font-size and font-weight values. the problem is, with the specified values, the text inside ...
0
votes
2answers
339 views

vertical-align:middle for text in button

I have this layout: My CSS: body{background: #e2eaed;} a{ text-decoration: none; color: #fff; font-size: 30px; height: 62px; line-height: 62px; /* vertical-align: ...
2
votes
0answers
87 views

List Items Vertical Align no working for IE 7 8 or 9

I did some research and tried some methods but nothing seems to work for IE. I have a Vertical List Style Menu. Example would be <ul class="menuleft"> <li><a href="index.php" ...
1
vote
2answers
112 views

CSS change height of children based on container element count

I've got a container which sometimes has three elements, sometimes four. The height of the container is constant. Are there any bright ideas out there for a CSS-based method for a vertical ...
2
votes
1answer
2k views

text vertical align in select box - firefox issue

I've got a problem with vertical align of select box caption in Firefox. CSS for select looks like this: select#cities_list { width: 95px; height: 45px; line-height: 45px; ...
0
votes
4answers
223 views

CSS Valign different line spans of text

I am currently working on a tabbed layout for one my site's pages and im having a problem with aligning text vertically in different tabs since some of it spans one line and some spans two. I need to ...
6
votes
3answers
1k views

Font Rendering / Line-Height Issue on Mac/PC (outside of element)

The Design The info widgets content should be vertically aligned in the middle as such: The Coded Design Windows: Chrome 20 / FF 14 / IE 9 Mac (Lion / Mt. Lion): Chrome / FF The Code ...
1
vote
2answers
164 views

Vertical centering with line-height

<div style="line-height:100px; height:100px;"> <span style="vertical-align:middle;">test</span> </div> Only when vertical-align:middle is specified in the span, the above ...
4
votes
2answers
693 views

CSS vertical align center in circles

I am trying to vertical center text in anchor. I used line-height and it works, but when the text wraps, the text in the second line gets the line-height... How can I center the text in the anchor ...
1
vote
2answers
149 views

Why my image can't be displayed vertical center in <div> via my CSS codes?

See my codes on jsFiddle: http://jsfiddle.net/dpMss HTML codes: <div> <img src="http://www.google.com.hk/intl/zh-CN/images/logo_cn.png" width="276" height="110" alt="Google China"> ...
0
votes
2answers
257 views

webkit vs firefox height of text

I have quite large text (font size 28) I'm trying to align vertically in a fixed-height container. I'm doing this by eye and just setting a margin-top so that it gets to the right spot. However, ...
0
votes
1answer
149 views

Help! My @font-face punctuation is floating up?

So I have a typeface I've been including in a couple sites lately called Kondolar. It's a lovely typeface and I'm actually using 4 weights of the font, so there are actually 4 @font-face definitions ...
10
votes
1answer
2k views

Webkit ignores vertical-align for inline-blocks containing line-boxes

When Webkit (Safari, Chrome) encounters an inline-block where... the line-height height is specified the content is rendered using multiple line-boxes ...the inline-block element ignores the ...
-1
votes
3answers
89 views

aligning images with text

i want to center align an image of 18px height with text next to it. Here is the code i use: <div style="line-height:18px; font-size:12px;"> <img src="somepic.jpg" style="height:18px; ...