response
message
- freepage02の最初に表示されるトップ部分のみを使用したいがスクロールがでてしまう。
response
はじめまして、メールありがとうございます。 お返事遅くなりまして申し訳ございません。
いただきました使用ページのurlですが、ページ自体存在しないようで、おそらく時間経過に依るものと思われる点を重ねてお詫び申し上げます。
トップ部分が「header,navのみの使用」という事で良ければ、下記でお試しいただければと思います。
code edit
code
head
- <style type="text/css">
- /* === import === */
- @import url(https://fonts.googleapis.com/css?family=Ubuntu);
- /* === reset & base === */
- * ,*:before ,*:after {
- box-sizing: border-box;
- position: relative;
- margin: 0;
- padding: 0;
- outline: 0;
- border: none;
- word-break: break-all;
- font-family: inherit;
- font-size: inherit;
- line-height: inherit;
- font-style: normal;
- font-weight: normal;
- letter-spacing: 0.1em;
- -webkit-appearance: none;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- }
- img {
- max-width: 100%;
- height: auto;
- }
- ul ,ol { list-style-type: none;}
- /* === layout === */
- /* 全体 */
- body {
- background-color: #333333;
- background-image: url(背景URL);
- background-repeat: no-repeat;
- background-attachment: fixed;
- background-position: 50% 0;
- background-size: 1px 1px;
- color: #000000;
- font-family: 'Ubuntu','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo','Osaka','MS Pゴシック', 'MS PGothic',sans-serif;
- font-size: 10px;
- line-height: 2.4em;
- }
- body:before {
- content: '';
- position: fixed;
- top: 0; bottom: 0;
- left: 0; right: 0;
- z-index: -1;
- display: block;
- background-image: inherit;
- background-size: cover;
- }
- ::-webkit-scrollbar {
- width: 6px;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 3px;
- background-color: #000000;
- }
- a {
- text-decoration : none;
- color: #000000;
- border-bottom: solid 2px #cccccc;
- }
- a:hover {
- border-bottom-color: #000000;
- }
- /* コンテンツ部分 */
- #layout {
- margin: 0 auto;
- padding-top: 30vh;
- }
- header {
- color: #ffffff;
- font-size: 1.6em;
- }
- header > * {
- padding: 5px;
- padding-left: 40px !important;
- }
- header h1 {
- display: inline-block;
- padding: 10px;
- background-color: rgba(0,0,0,0.8);
- font-size: 1.5em;
- }
- nav {
- position: fixed;
- bottom: 0;
- left: 0; right: 0;
- z-index: 999;
- padding: 6px 10px;
- font-size: 1.2em;
- text-align: right;
- background-color: rgba(255,255,255,0.9);
- }
- nav ul li {
- display: inline;
- padding: 0 10px;
- }
- nav ul li + li {
- border-left: solid 2px #cccccc;
- }
- nav a {
- border-bottom: none;
- }
- @media screen and (min-width: 501px) and (min-height: 501px) {
- body { font-size: 14px;}
- }
- @media screen and (min-width: 501px) and (orientation:landscape) {
- #layout { width: 500px;}
- body:before ,nav {
- left: 50%; right: auto;
- width: 500px;
- margin-left: -250px;
- }
- }
- @media all and (-ms-high-contrast: none){
- body { background-size: 500px auto !important; }
- body:before { display: none !important; }
- }
- /*
- freepage 02 ver(1.0.2)
- Template by http://nanos.jp/sikaku0/ */
- </style>
body
- <div id="layout">
- <header>
- <h1>free page 02</h1>
- <p class="sub">var 1.0.1</p>
- </header>
- <nav>
- <ul>
- <li><a href="#info">info</a></li>
- <li><a href="#main">main</a></li>
- <li><a href="#mail">mail</a></li>
- <li><a href="#sample">sample</a></li>
- </ul>
- </nav>
- </div>
nav不要の場合の編集
▽head
- 削除
,nav
削除
▽body
- 削除