10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【論理プロパティ】margin-startとは その他比較

Last updated at Posted at 2015-03-02

知らなかったのでメモ

margin-start(= margin-left)

文の始まりの前にマージンがつく。
★がマージンが付く部分だとして、
例)★あいうえお

margin-end(= margin-right)

文の終わりにマージンがつく
例)あいうえお★

margin-before(= margin-top)

文が始まる段の上にマージンがつく
例)
  ★
  あいうえお

margin-after(= margin-bottom)

文が終わる段の下にマージンがつく
例)
  あいうえお
  ★

横.PNG

以下のように指定

(chromeでしかチェックしていません)


<style type="text/css">
.textboxwrap {
	border: 2px #000 solid;
}
.textbox.start {
	margin-start: 50px;
	-webkit-margin-start: 50px;
	background-color: red;
}
	.textbox.end {
	margin-end: 50px;
	-webkit-margin-end: 50px;
	background-color: blue
}
	.textbox.before {
	margin-before: 50px;
	-webkit-margin-before: 50px;
	background-color: yellow;
}
	.textbox.after {
	margin-start: 50px;
	-webkit-margin-after: 50px;
	background-color: orange;
}
</style>
10
9
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?