2022-10-19 06:25:18 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Document</title>
|
|
|
|
<style>
|
|
|
|
a {
|
|
|
|
color:red
|
|
|
|
}
|
|
|
|
</style><style>
|
|
|
|
b {
|
|
|
|
color:blue
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<!-- test -->
|
|
|
|
<style>
|
|
|
|
p {
|
|
|
|
color: white;
|
|
|
|
background-color: blue;
|
|
|
|
padding: 5px;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<style>
|
|
|
|
p {
|
|
|
|
color: blue;
|
|
|
|
background-color: yellow;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<style media="all and (max-width: 500px)">
|
|
|
|
p {
|
|
|
|
color: blue;
|
|
|
|
background-color: yellow;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<style type="text/css">
|
|
|
|
.first {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<style type="text/css">
|
|
|
|
.second {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<style media="all">
|
|
|
|
p {
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<style media="all">
|
|
|
|
p {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>test</div>
|
|
|
|
<style>a { color: red }</style>
|
|
|
|
<style></style>
|
|
|
|
<div>test</div>
|
|
|
|
<style></style>
|
|
|
|
<style>a { color: red }</style>
|
2022-10-27 05:25:45 +03:00
|
|
|
<div>test</div>
|
|
|
|
<style type="text/css"></style><style>a { color: red }</style>
|
2022-10-19 06:25:18 +03:00
|
|
|
</body>
|
|
|
|
</html>
|