{"id":887,"date":"2022-02-03T15:45:09","date_gmt":"2022-02-03T06:45:09","guid":{"rendered":"http:\/\/mylittleforest.kr\/wordpress\/?p=887"},"modified":"2022-02-22T09:51:11","modified_gmt":"2022-02-22T00:51:11","slug":"css-%ea%b8%b0%ec%b4%88-%ed%99%9c%ec%9a%a9","status":"publish","type":"post","link":"http:\/\/mylittleforest.kr\/wordpress\/blog\/2022\/02\/03\/887\/","title":{"rendered":"CSS \uae30\ucd08 \ud65c\uc6a9"},"content":{"rendered":"\n<h4><a href=\"https:\/\/www.w3schools.com\/css\/css_border.asp\" target=\"_blank\" rel=\"noreferrer noopener\">CSS \ud14c\ub450\ub9ac : CSS Border Style<\/a><\/h4>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;style&gt;\np.dotted {border-style: dotted;}\np.dashed {border-style: dashed;}\np.solid {border-style: solid;}\n&lt;\/style&gt;\n...\n&lt;p class=&quot;dotted&quot;&gt;A dotted border.&lt;\/p&gt;\n&lt;p class=&quot;dashed&quot;&gt;A dashed border.&lt;\/p&gt;\n&lt;p class=&quot;solid&quot;&gt;A solid border.&lt;\/p&gt;\n<\/pre><\/div>\n\n\n<h4><a href=\"https:\/\/www.w3schools.com\/css\/css_dimension.asp\" target=\"_blank\" rel=\"noreferrer noopener\">\ub192\uc774\uc640 \ub108\ube44 : CSS\u00a0Height and Width<\/a><\/h4>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\ndiv {\n  height: 200px;\n  width: 50%;\n  background-color: powderblue;\n}\n<\/pre><\/div>\n\n\n<h4><a href=\"https:\/\/www.w3schools.com\/css\/css_margin.asp\" target=\"_blank\" rel=\"noreferrer noopener\">CSS \uc5ec\ubc31 : CSS\u00a0Margin<\/a><\/h4>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\np {\n  margin-top: 100px;\n  margin-bottom: 100px;\n  margin-right: 150px;\n  margin-left: 80px;\n}\n<\/pre><\/div>\n\n\n<h4><a href=\"https:\/\/www.w3schools.com\/css\/css_boxmodel.asp\" target=\"_blank\" rel=\"noreferrer noopener\">CSS \ubc15\uc2a4\ubaa8\ub378 : CSS\u00a0Box Model<\/a><\/h4>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\ndiv {\n  width: 300px;\n  border: 15px solid green;\n  padding: 50px;\n  margin: 20px;\n}\n<\/pre><\/div>\n\n\n<h4><a href=\"https:\/\/www.w3schools.com\/css\/css_icons.asp\" target=\"_blank\" rel=\"noreferrer noopener\">CSS \uc544\uc774\ucf58 \ubaa8\ub378 : CSS\u00a0Icons<\/a><\/h4>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;head&gt;\n&lt;script src=&quot;https:\/\/kit.fontawesome.com\/a076d05399.js&quot; crossorigin=&quot;anonymous&quot;&gt;&lt;\/script&gt;\n&lt;\/head&gt;\n\n&lt;i class=&quot;fas fa-cloud&quot;&gt;&lt;\/i&gt;\n&lt;i class=&quot;fas fa-heart&quot;&gt;&lt;\/i&gt;\n&lt;i class=&quot;fas fa-cloud&quot; style=&quot;font-size:24px;&quot;&gt;&lt;\/i&gt;\n&lt;i class=&quot;fas fa-cloud&quot; style=&quot;font-size:36px;&quot;&gt;&lt;\/i&gt;\n<\/pre><\/div>\n\n\n<h4><a href=\"https:\/\/www.w3schools.com\/css\/css_overflow.asp\" target=\"_blank\" rel=\"noreferrer noopener\">CSS \uc624\ubc84\ud50c\ub85c \ubaa8\ub378 : CSS\u00a0Layout &#8211; Overflow<\/a><\/h4>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\ndiv {\n  width: 200px;\n  height: 50px;\n  background-color: #eee;\n  overflow: visible;\n}\n<\/pre><\/div>\n\n\n<h4>CSS \uac00\uc0c1\ud074\ub798\uc2a4 : <\/h4>\n\n\n\n<p><a href=\"https:\/\/www.w3schools.com\/css\/css_link.asp\" target=\"_blank\" rel=\"noreferrer noopener\">CSS\u00a0Links<\/a><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\n\/* unvisited link *\/\na:link {\n  color: red;\n}\n\n\/* visited link *\/\na:visited {\n  color: green;\n}\n\n\/* mouse over link *\/\na:hover {\n  color: hotpink;\n}\n\n\/* selected link *\/\na:active {\n  color: blue;\n}\n<\/pre><\/div>\n\n\n<p><a href=\"https:\/\/www.w3schools.com\/css\/css_dropdowns.asp\" target=\"_blank\" rel=\"noreferrer noopener\">CSS\u00a0Dropdowns<\/a><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\n&lt;style&gt;\n.dropdown {\n  position: relative;\n  display: inline-block;\n}\n\n.dropdown-content {\n  display: none;\n  position: absolute;\n  background-color: #f9f9f9;\n  min-width: 160px;\n  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);\n  padding: 12px 16px;\n  z-index: 1;\n}\n\n.dropdown:hover .dropdown-content {\n  display: block;\n}\n&lt;\/style&gt;\n\n&lt;div class=&quot;dropdown&quot;&gt;\n  &lt;span&gt;Mouse over me&lt;\/span&gt;\n  &lt;div class=&quot;dropdown-content&quot;&gt;\n    &lt;p&gt;Hello World!&lt;\/p&gt;\n  &lt;\/div&gt;\n&lt;\/div&gt;\n<\/pre><\/div>\n\n\n<p><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CSS \ud14c\ub450\ub9ac : CSS Border Style \ub192\uc774\uc640 \ub108\ube44 : CSS\u00a0Height and Width CSS \uc5ec\ubc31 : CSS\u00a0Margin CSS \ubc15\uc2a4\ubaa8\ub378 : CSS\u00a0Box Model CSS \uc544\uc774\ucf58 \ubaa8\ub378 : CSS\u00a0Icons CSS \uc624\ubc84\ud50c\ub85c \ubaa8\ub378 : CSS\u00a0Layout &#8211; Overflow CSS \uac00\uc0c1\ud074\ub798\uc2a4 : CSS\u00a0Links CSS\u00a0Dropdowns<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false},"categories":[38],"tags":[],"_links":{"self":[{"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/posts\/887"}],"collection":[{"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/comments?post=887"}],"version-history":[{"count":11,"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/posts\/887\/revisions"}],"predecessor-version":[{"id":898,"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/posts\/887\/revisions\/898"}],"wp:attachment":[{"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/media?parent=887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/categories?post=887"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/mylittleforest.kr\/wordpress\/wp-json\/wp\/v2\/tags?post=887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}