私はいくつかの場所でその位置を読みました:固定;通常のドキュメントフローから削除されているため、親要素ではなく、ビューポートに要素を配置する必要があります。しかし、次のコードで見られるように、このように動作するようです。位置が固定された要素は、親要素の開始点をとります。何を与える!ありがとう。 位置:固定;ビューポートの要素を基にしていません
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="cssreset.css">
<head>
<title>TTK</title>
<style>
* {
\t box-sizing: border-box;
}
.container {
\t width: 500px;
\t height: 500px;
\t margin: 25px auto;
\t border: 5px solid black;
\t position: relative;
\t background: yellow;
}
.positionFixed {
\t width: 750px;
\t height: 250px;
\t border: 3px solid blue; /* why does the border not show up */
\t position: fixed;
\t background: red;
}
</style>
</head>]
<body>
<div class="container">
\t <div class="positionFixed"></div>
</div>
</body>
</html>
私はCSSのコメントに質問を取得いけない、ここで働く[jsfiddle](https://jsfiddle.net/DomeTune/7cymedo7/)に固定 'positionFixed'isですあなたがrblarsenの答えの側面を追加しないならば、左上。 positionFixed幅が大きいという事実のために、それはコンテナを覆い隠します。 – DomeTune