Jump to content
  • 0

Как можно сдвинуть кнопку влево?


noob_saibot
 Share

Question

Здравствуйте!

http://unbrokenteam.ru/

На главной странице внизу есть кнопка "Отправить".

Как можно сдвинуть ее влево? При этом чтобы другие кнопки оставались на прежнем месте. Добавить button2 с выравниванием влево? Но в этом случае кнопку сплющивает.

Вот style.css:

   body {
      padding: 20px;
    }
    button {
      margin-top: 20px;
      margin-left: 80px;
      line-height: 38px;
      font-size: 93%;
      padding: 0 60px;
      background: white;
      border: 2px solid rgb(112, 182, 234);
      border-radius: 35px;
      
      position: relative;
      left: 45%;
      transform: translate(-55%, 0);
    }
    button:hover {
      transition: 0.3s linear; 
      background: rgb(112, 182, 234);
      color: white;
    }

    form {
        padding: 20px;
        margin: 20px;
    }

 

Edited by noob_saibot
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Применил к кнопкам "Подробнее" и "Отправить заявку"

<button class="noTableBorder button">Отправить</button>

Все равно они не сместились влево.

В style.css добавил:

.noTableBorder button {
  left: 0; 
  margin-left: 0;
  transform: none;
  display:  block;
}

 

index.html

style.css

Edited by noob_saibot
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