Jump to content
  • 0

Изменение кнопки меню в адаптивной вёрстке


cuyofiveg
 Share

Question

Добрый день.

Помогите, пожалуйста, разобраться, никак не могу сделать так, чтобы на маленьких экранах кнопки становились меньше. Конструкция кнопок выглядит таким вот образом. Как прописать при:

@media screen and (max-width: 700px) and (min-width: 300px){

их уменьшение? Кнопки даже не думают уменьшаться, просто переносятся в строку, а размер картинок не меняется. Пробовал уже всякое найденное в сети, но ни в какую не меняется размер.

Нужно сделать их адаптивными. Просто картинку адаптивной могу сделать, картинку в виде ссылки могу сделать, но нужно чтобы при наведении картинка менялась, а из-за этого она становится тегом "<a href=...", а в нём картинка указывается через "background: url", а к нему не достучаться.

Пробовал даже такие штуки, не помогает...

background: url(background.png) no-repeat;
-webkit-background-size: 100%;
-o-background-size: 100%;
-moz-background-size: 100%;
-ms-background-size: 100%;
-khtml-background-size: 100%;
background-size: 100%;

 

 

Структура кнопок примерно такая:

 

<style>
a.menu1 {
	display: inline-block;
    background: url(images/menu1.png);
    width: 100px;
    height: 60px;
	}

a.menu1:hover {
    background: url(images/menu2.png);
	transition: all 900ms ease-out;
   }
</style>




<table>
<tr>
		<td class="menu">
		<a href="#" class="menu1"> </a>
		</td>
</tr>
</table>

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

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