试试这个:
div#mydiv {
position: fixed;
left: 0;
}
Run Code Online (Sandbox Code Playgroud)
您可能也想添加top或者添加bottom它,以便它不会位于屏幕顶部.
就像是:
div#mydiv {
position: fixed;
left: 0;
top: 200px; /* 200px from top */
}
Run Code Online (Sandbox Code Playgroud)
要么:
div#mydiv {
position: fixed;
left: 0;
bottom: 200px; /* 200px from bottom */
}
Run Code Online (Sandbox Code Playgroud)
要么:
div#mydiv {
position: fixed;
left: 0;
top: 50%; /* Half way down the side */
}
Run Code Online (Sandbox Code Playgroud)