views:

126

answers:

5

I want to make a logo using html css. Can we increase the angle of italic text using css or javascript?

A: 

That's not possible with CSS. You could try to switch to another font on i's and em's that has more slanted letters but I don't think that'll help you.

And if you're designing a logo, why are you doing it with CSS? That's what you have Photoshop and/or Illustrator for.

Tatu Ulmanen
i'm designing a logo for client to show his logo in his email newsletters if user or email client or web mail keeps images disabled by default
metal-gear-solid
+7  A: 

The angle depends on the font you are using. The font designer has to draw the italic version manually. You can't change that automatically.

Lukáš Lalinský
+1  A: 

You can use a skew transform in Firefox, Safari and Chrome. Nothing else is going to support it, and you shouldn't screw around with a font designer's work for a logo design unless you know more about typography than they did anyway. Nobody designs logos in HTML and nobody wants to look at logos in email.

Azeem.Butt
A: 

HTML/CSS is the wrong tool for this. Use Illustrator or that kind of software. Or look for a designer.

BalusC
A: 

Make your own font or modify an open source font using a free font-editing tool such as FontForge.

Edit: I see that this is for e-mail with images disabled. Sorry, but it's not possible at all in this case, as most e-mail clients other than new versions of Thunderbird don't support @font-face CSS rules.

Eli Grey