You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
530 B
24 lines
530 B
10 months ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<meta name="viewport" content="width=device-width"/>
|
||
|
<style>
|
||
|
h1 {
|
||
|
display: inline;
|
||
|
}
|
||
|
p {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
a {
|
||
|
display: block;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>h has block property. But go to inline.</h1>
|
||
|
<p>p has block property. But go to inline-block</p>
|
||
|
<a>a has inline propery. But go to block.</a>
|
||
|
<span>span has inline property</span>
|
||
|
</body>
|
||
|
</html>
|