Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="texts">
		<p>吾輩は猫である 名前はまだ無い</p>
		<p>どこで生れたか とんと見当がつかぬ</p>
		<p>何でも薄暗いじめじめした所で ニャーニャー泣いていた事だけは記憶している</p>
		<p>吾輩はここで始めて 人間というものを見た</p>
		<p>しかもあとで聞くとそれは</p>
		<p>書生という人間中で一番 獰悪な種族であったそうだ</p>
		<p>この書生というのは時々我々を 捕て煮て食うという話である</p>
		<p>しかしその当時は何という考もなかったから</p>
		<p>別段恐しいとも思わなかった</p>
		<p>ただ彼の掌に載せられて スーと持ち上げられた時何だか</p>
		<p>フワフワした感じが あったばかりである</p>
		<p>掌の上で少し落ちついて 書生の顔を見たのが</p>
		<p>いわゆる人間というものの 見始めであろう</p>
	</div>
<p><a href="https://1-notes.com/css-fixed-background-image-on-page/" target="_blank" rel="noopener">CSS | Fixed background image on page | 1 NOTES</a></p>
              
            
!

CSS

              
                body {
	background-image: url("https://1-notes.com/wp-content/uploads/2020/06/quality-50-1024x682.jpg");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.texts {
	font-size:18px;
	color: white;
}

a {
	color: pink;
}

              
            
!

JS

              
                
              
            
!
999px

Console