Jump to content
  • 0

позиционирование картинок на одном уровне с текстом


burn
 Share

Question

привет

давно видел эту неприятность, но как-то не обращал на нее внимания, до тех пор пока она не начала мне реально докучать - нынешних. вот код:

<a href="/listen/aradio.m3u" style="text-decoration:none; height:17px; border:#fff 1px solid;">MP3</a>
<a href="/listen/aradio.m3u" style="text-decoration:none; height:17px; border:#fff 1px solid;"><img src="/pics/hi.png" width="30" height="17" alt="192"/></a>

а вот что он выводит:

bullshit.png

для наглядности приписал белый border, а для надежности - параметр высоты. не сработало. а проблема, как вы уже поняли, в том, что текст не на одном уровне с картинкой. точнее, последняя немного выше. vspace, align, margin-bottom:-3px не помогли...

что это за херь? и как с нею бороться?

Edited by burn
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

а если так:

<style>
#div_style a {
text-decoration:none;
height:17px;
border:#fff 1px solid;
}
img {
border:none;
}
</style>
</head>

<body>
<div id="div_style">
<a href="/listen/aradio.m3u">MP3</a>
<a href="/listen/aradio.m3u"><img src="/pics/hi.png" width="30" height="17" alt="192"/></a>
</div>

Link to comment
Share on other sites

  • 0

мона вот так, но это имхо уж очень извращенно!

<style>
#div_style1 a {
text-decoration:none;
position:absolute;
top:11px;
}
img {
border:none;
}
#div_style2 {
position:absolute;
top:10px;
left:50px;
}
</style>
</head>
<body>
<div id="div_style1">
<a href="/listen/aradio.m3u">MP3</a>
</div>
<div id="div_style2">
<a href="/listen/aradio.m3u"><img src="/pics/hi.png" width="30" height="17" alt="192"/></a>
</div>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy