Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Дз3 #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions Выравнивание/1/1. способ (1).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!-- с помощью margin -->
<!DOCTYPE html>
<html>
<head>
<title> Выравнивание1 </title>
<style>
div {
background-color: red;
width: 100px;
height: 100px;
overflow: auto;
}
.method1 {
margin: auto;
}
.method2 {
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div class="method1","method2">
Выровнять элемент с шириной и высотой в 100px по центру страницы по горизонтали всеми возможными способами
</div>
</body>
</html>
23 changes: 23 additions & 0 deletions Выравнивание/1/1. способ (2).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- для тега div-->
<!DOCTYPE html>
<html>
<head>
<title> Выравнивание2 </title>
<style>
div div {
background-color: red;
width: 100px;
height: 100px;
overflow: auto;
}

</style>
</head>
<body>
<div align="center">
<div>
Выровнять элемент с шириной и высотой в 100px по центру страницы по горизонтали всеми возможными способами
</div>
</div>
</body>
</html>
25 changes: 25 additions & 0 deletions Выравнивание/1/1. способ (3).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!-- абсолютное позиционирование -->
<!DOCTYPE html>
<html>
<head>
<title> Выравнивание3 </title>
<style>
div {
background-color: red;
width: 100px;
height: 100px;
overflow: auto;
}
.method {
position: absolute;
left: 50%;
margin-left: -50px;
}
</style>
</head>
<body>
<div class="method">
Выровнять элемент с шириной и высотой в 100px по центру страницы по горизонтали всеми возможными способами
</div>
</body>
</html>
22 changes: 22 additions & 0 deletions Выравнивание/1/1. способ (4).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!-- с помощью таблицы-->
<!DOCTYPE html>
<html>
<head>
<title> Выравнивение4 </title>
<style>
TD div {
background-color: red;
width: 100px;
height: 100px;
overflow: auto;
}
</style>
</head>
<body>
<table width="100px" cellpadding="0" align="center">
<tr>
<td> <div> Выровнять элемент с шириной и высотой в 100px по центру страницы по горизонтали всеми возможными способами </div> </td>
</tr>
</table>
</body>
</html>
33 changes: 33 additions & 0 deletions Выравнивание/1/1. способ (5).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!-- три колонки. ширина центральной задается в пикселах, а правой и левой - в процентах -->
<html>
<head>
<title> Выравнивание5</title>
<style>
.div1 {
float: left;
width: 50%;
margin-left: -50px;
text-align: center;
}
.div2 {
background-color: red;
width: 100px;
height: 100px;
overflow: auto;
}
.div3 {
float: right;
width: 50%;
margin-right: -50px;
text-align: center;
}
</style>
</head>
<body>
<div class="div1"> левая колонка </div>
<div class="div3"> правая колонка </div>
<div class="div2">
Выровнять элемент с шириной и высотой в 100px по центру страницы по горизонтали всеми возможными способами
</div>
</body>
</html>
29 changes: 29 additions & 0 deletions Выравнивание/1/1. способ (6).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!-- с помощью таблицы --><html>
<head>
<title> Выравнивание6</title>
<style>
.layout { width: 100%; table-layout: fixed; }
.layout TD { padding: 7px; vertical-align: top; }
.col1 { width: 50%; }
.col2 { width: 100px; }
TD div {
background-color: red;
width: 100px;
height: 100px;
overflow: auto;
}
.col3 { width: 50%; }
</style>
</head>
<body>
<table class="layout" cellspacing="0">
<tr>
<td class="col1">колонка1<td>
<td class="col2">
<div> Выровнять элемент с шириной и высотой в 100px по центру страницы по горизонтали всеми возможными способами </div>
</td>
<td class="col3">колонка3</td>
</tr>
</table>
</body>
</html>
20 changes: 20 additions & 0 deletions Выравнивание/2/2. способ (1).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title> Выравнивание1 </title>
<style>
div {
background-color: red;
height: 100px;
overflow: auto;
display: table;
margin: auto;
}
</style>
</head>
<body>
<div>
какой-нибудь текст
</div>
</body>
</html>
21 changes: 21 additions & 0 deletions Выравнивание/2/2. способ (2).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!-- с помощью таблицы-->
<!DOCTYPE html>
<html>
<head>
<title> Выравнивение2 </title>
<style>
TD div {
background-color: red;
height: 100px;
overflow: auto;
}
</style>
</head>
<body>
<table cellpadding="0" align="center">
<tr>
<td> <div> какой-нибудь текст</div> </td>
</tr>
</table>
</body>
</html>
25 changes: 25 additions & 0 deletions Раскладка/раскладка1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title> Раскладка1 </title>
<style>
.column1 {
background: blue;
float: left;
width: 300px;
min-height: 100px;
}
.column2 {
background: red;
float: rigth;
min-height: 100px;
}
</style>
</head>
<body>
<div class = "column1"> левая колонка, шириной 300 px
</div>
<div class = "column2"> правая колонка, занимающая все оставшееся пространство
</div>
</body>
</html>
26 changes: 26 additions & 0 deletions Раскладка/раскладка2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title> Раскладка1 </title>
<style>
.column1 {
background: blue;
float: left;
min-width: 150px;
max-width: 300px;
min-height: 100px;
}
.column2 {
background: red;
float: rigth;
min-height: 100px;
}
</style>
</head>
<body>
<div class = "column1"> левая колонка, шириной от 150 до 300 px
</div>
<div class = "column2"> правая колонка, занимающая все оставшееся пространство
</div>
</body>
</html>