文書の先頭に<!DOCTYPE html>
を追加すると、この移行はもう機能しません。どうして?<html>タグを追加するとCSSが動作しない
これは、(Chromeとマイクロソフトエッジで)動作します。
<html>
<head>
<title></title>
<style type="text/css">
.container{
width: 400px;
margin-left: auto;
margin-right: auto;
background-color: #9FC;
}
.gradBox {
width: 300px;
height: 100px;
margin-right: auto;
margin-left: auto;
margin-top: 20px;
margin-bottom: 20px;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
-webkit-transition: width 1s;
transition: width 1s;
}
.gradBox:hover {
width: 400;
}
#grad1 {
background: linear-gradient(to right, #F00 1%, #FF0 25%, #0F0 50%, #0FF 75%, #00F 100%)
}
</style>
</head>
<body>
<div class="container">
<div class="gradBox" id="grad1">
</div>
</div>
</body>
</html>
これは、どちらかでは動作しません:
<!DOCTYPE html>
<html>
<head>
<title></title>
... (the rest of the markup is identical)
どちらも私にとってうまくいくようです。 – thepio
両方のコードサンプルが同じですか? – since095
@ since095:2番目の例ではHTML5を使用しています。 – WorkWe