noob_saibot Posted May 7 Report Share Posted May 7 Здравствуйте! http://unbrokenteam.ru/ В style.css прописал: #noTableBorder button { left: 0; margin-left: 0; transform: none; display: block; } На главной странице внизу есть кнопка "Отправить". Применил к ней класс <button class="noTableBorder button">Отправить</button> И все стало норм. Кнопка "Отправить" ушла влево. А если нужно кнопку "Подробнее" сдвинуть влево, то как здесь применить class="noTableBorder button"? Там код такой: <script>// 1. Create the button var button = document.createElement("button"); button.innerHTML = "ПОДРОБНЕЕ"; // 2. Append somewhere var body = document.getElementsByTagName("body")[0]; body.appendChild(button); // 3. Add event handler button.addEventListener ("click", function() { window.location.href = 'https://unbrokenteam.ru/pages/outsourcing.html'; }); /* Read https://css-tricks.com/use-button-element/ */</script> Quote Link to comment Share on other sites More sharing options...
noob_saibot Posted May 7 Author Report Share Posted May 7 Точнее сайт такой https://unbrokenteam.ru/ Quote Link to comment Share on other sites More sharing options...
NaFanyA Posted May 7 Report Share Posted May 7 А чего тебе не сделать кнопку "Подробнее" также через html? Quote Link to comment Share on other sites More sharing options...
noob_saibot Posted May 9 Author Report Share Posted May 9 В 07.05.2022 в 14:26, NaFanyA сказал: А чего тебе не сделать кнопку "Подробнее" также через html? Точно. Так и сделал. Спасибо! А как теперь переместить кнопку на ту же вертикальную линию, что и поля для ввода? Вот как сейчас Вот как должно быть Я использую этот класс для кнопки в style.css .noTableBorder-button { left: 0; margin-left: 0; transform: none; display: block; } index.html style.css Quote Link to comment Share on other sites More sharing options...
NaFanyA Posted May 9 Report Share Posted May 9 Через margin-left попробуй Quote Link to comment Share on other sites More sharing options...
noob_saibot Posted May 9 Author Report Share Posted May 9 👍 Quote Link to comment Share on other sites More sharing options...
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.