Jump to content
  • 0

растянуть картинку на кнопке


venomancer
 Share

Question

народ, помогите пожалуйста. вопрос вот такой: как расятнуть картинку на всю кнопку, чтобы не было места между краями кнопки и краями картинки ... что мне нужно для этого дописать сюда:

<form action="test.html" method="post">
<button type="submit" name="b_test" style="border:0;background-color:#cccccd;"><img src="/pictures/d_on_pict.png"></button></form>

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

понимаешь, yopopt, все в твоем предложенном методе хорошо, но смотри с баттоном я делаю к примеру так:

<?
if(!isset($_POST['']))
{?>
<form action="test.html" method="post">
<button type="submit" name="b_test" style="border:0;background-color:#cccccd;"><img src="/pictures/d_on_pict.png"></button></form><?
}
else
{
echo "success";
}

в предложенном же тобой варианте нужно отлавливать координаты клика, а это немного геморно :o

Link to comment
Share on other sites

  • 0

Тогда так:

<?php
if(!isset($_POST['b_test']))
{
?>
<form action="test.html" method="post">
<div>
<input type="submit" name="b_test" value="" style="background:url(/pictures/d_on_pict.png);border:0;ширина и высота" />
</div>
</form>
<?php
}
else
{
echo "success";
}
?>

Или так:

<?php
if(!isset($_POST['b_test']))
{
?>
<form action="test.html" method="post">
<div>
<button type="submit" name="b_test" value="" style="background:url(/pictures/d_on_pict.png);border:0;ширина и высота"></button>
</div>
</form>
<?php
}
else
{
echo "success";
}
?>

Link to comment
Share on other sites

  • 0

я вас наверное уже замучил, но при таком подходе все здорово, но почему то при указании ширины и высоты картинка помещается не вся а только кусок если я не угадал с параметрами , а нельзя ли сделать так чтобы она ужималась под эти высоту и ширину?

заранее спасибо =)

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