<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
.square
{
width:250px;
height:250px;
background-color:lightgray;
}
.text
{
margin-top:30px;
}
</style>
</head>
<body>
<div class="square">
<div class="text">Jakis tam sobie tekst</div>
</div>
</body>
</html>
Witam mam pytanie dotyczące użycia marginesu, aktualnie przerabiam 3 odcinek htmla od Mirosława Zelenta i zastanawia mnie jedna rzecz a dokładniej użycie margin-top(40 minuta 10 sekunda filmu) nie rozumiem dlaczego działa tutaj margin-top ponieważ do robienia marginesu wewnętrznego służy padding. Załóżmy że mam zrobionego diva o nazwie "square" a w nim diva o nazwie "text"(w środku jest tekst) i jeżeli użyje komendy margin-top:10px; to przesunie się także div o nazwie"square". Jeżeli natomiast też mam diva square a w nim uśmiech (ikonka z fontello) to jeżeli margin-top ustawie w fontello.css to przesunie się tylko napis. Chciałbym się dowiedzieć dlaczego to tak działa w sensie czemu tutaj margin-top działa a przy normalnym tekście nie.
Poniżej index.html z wklejoną emotką (czcionką z fontello.com)
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
.square
{
width:250px;
height:250px;
background-color:lightgray;
}
</style>
<link rel="stylesheet" type="text/css" href="fontello/css/fontello.css">
</head>
<body>
<div class="square">
<div class="logo"><i class="demo-icon icon-emo-happy"></i></div>
</div>
</body>
</html>
Poniżej plik fontello.css (na samym dole jest styl tej czcionki)
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?12865858');
src: url('../font/fontello.eot?12865858#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?12865858') format('woff2'),
url('../font/fontello.woff?12865858') format('woff'),
url('../font/fontello.ttf?12865858') format('truetype'),
url('../font/fontello.svg?12865858#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'fontello';
src: url('../font/fontello.svg?12865858#fontello') format('svg');
}
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-emo-happy:before { content: '\e802';margin-top:20px;} /* '' */