Mail.ru
Почта
Мой Мир
Одноклассники
ВКонтакте
Игры
Знакомства
Новости
Календарь
Облако
Заметки
Все проекты
Все проекты
выход
Регистрация
Вход
Категории
Все вопросы проекта
Компьютеры, Интернет
Темы для взрослых
Авто, Мото
Красота и Здоровье
Товары и Услуги
Бизнес, Финансы
Наука, Техника, Языки
Философия, Непознанное
Города и Страны
Образование
Фотография, Видеосъемка
Гороскопы, Магия, Гадания
Общество, Политика, СМИ
Юридическая консультация
Досуг, Развлечения
Путешествия, Туризм
Юмор
Еда, Кулинария
Работа, Карьера
О проектах Mail
Животные, Растения
Семья, Дом, Дети
Другое
Знакомства, Любовь, Отношения
Спорт
Золотой фонд
Искусство и Культура
Стиль, Мода, Звезды
Полный список
Спросить
Лидеры
Поиск по вопросам
Ответы Mail
Программирование
Android
C/C++
C#
iOS
Java
JavaScript
jQuery
SQL
Perl
PHP
Python
Веб-дизайн
Верстка, CSS, HTML, SVG
Системное администрирование
Другие языки и технологии
Вопросы - лидеры.
Создать кликер на HTML, JS, CSS
1 ставка
Лидеры категории
Лена-пена
Искусственный Интеллект
М.И.
Искусственный Интеллект
Y.Nine
Искусственный Интеллект
•••
Не двигается картинка вверх CSS/HTML
Yuriy Mihalevich
Ученик
(224), на голосовании
4 года назад
Влево, вниз, вправо - двигается, а вверх не хочет, есть предположение что с контейнерами намудрил
Вот html и css
css:
*{
text-decoration: none;
}
*:before,
*:after{
}
.container{
width:100%;
max-width: 1084px;
margin:auto;
}
.header{
}
.header_inner{
display:flex;
justify-content: space-between;}
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 5px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 23px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}
.button1 {
background-color: #fff;
color: #393939;
}
.button1:hover {
background-color: #393939;
color: white;
}
.button2 {
background-color: white;
color: black;
}
.button2:hover {
background-color: #393939;
color: white;
}
.button3 {
background-color: white;
color: black;
}
.button3:hover {
background-color: #393939;
color: white;
}
.button4 {
background-color: white;
color: black;
}
.button4:hover {background-color: #393939;color: white}
.intro_title{
display: block;
padding-top:229px;
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 61px; font-style: normal; font-variant: normal; font-weight: 100; line-height: 26.4px; } h3 { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; } p { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 61px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } blockquote { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 61px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } pre { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 61px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px;;
}
.right{
display: inline-block;
padding-bottom: 100px;
}
HTML:
Голосование за лучший ответ
Elepsis Eclipse
Гений
(67291)
5 лет назад
Почему всем кажется, что в голове верстальщиков встроенный интерпретатор кода...
Никто не будет работать с кодом в таком виде... существует
https://jsfiddle.net/
Yuriy Mihalevich
Ученик (224)
5 лет назад
https://jsfiddle.net/0e52ushj/
Elepsis Eclipse
Гений (67291) Если у .right убрать display: inline-block; картинка уйдет направо) inlint-block; схлопывает размеры блока до размеров его контента. А по умолчанию - у div стоит display: block — и он занимает всю доступную ширину.
Похожие вопросы
Вот html и css
css:
*{
text-decoration: none;
}
*:before,
*:after{
}
.container{
width:100%;
max-width: 1084px;
margin:auto;
}
.header{
}
.header_inner{
display:flex;
justify-content: space-between;}
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 5px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 23px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}
.button1 {
background-color: #fff;
color: #393939;
}
.button1:hover {
background-color: #393939;
color: white;
}
.button2 {
background-color: white;
color: black;
}
.button2:hover {
background-color: #393939;
color: white;
}
.button3 {
background-color: white;
color: black;
}
.button3:hover {
background-color: #393939;
color: white;
}
.button4 {
background-color: white;
color: black;
}
.button4:hover {background-color: #393939;color: white}
.intro_title{
display: block;
padding-top:229px;
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 61px; font-style: normal; font-variant: normal; font-weight: 100; line-height: 26.4px; } h3 { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; } p { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 61px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } blockquote { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 61px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } pre { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 61px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px;;
}
.right{
display: inline-block;
padding-bottom: 100px;
}
HTML: