Skip to content

Instantly share code, notes, and snippets.

@helloGoGo
Last active March 13, 2017 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save helloGoGo/2755092e3aa9d885ca51f79f461643b6 to your computer and use it in GitHub Desktop.
Save helloGoGo/2755092e3aa9d885ca51f79f461643b6 to your computer and use it in GitHub Desktop.
cssで字下げ表示
<!DOCTYPE html>
<html>
<head>
<style>
p {
padding-left: 1em;
text-indent: -1em;
}
</style>
</head>
<body>
<p>※この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment