{"id":365,"date":"2017-02-08T17:56:51","date_gmt":"2017-02-08T09:56:51","guid":{"rendered":"http:\/\/www.qdabc.cn\/?p=365"},"modified":"2017-02-08T17:56:51","modified_gmt":"2017-02-08T09:56:51","slug":"css-%e5%b1%85%e4%b8%ad%e7%9a%84%e4%b8%89%e7%a7%8d%e6%96%b9%e6%b3%95","status":"publish","type":"post","link":"http:\/\/www.qdabc.cn\/?p=365","title":{"rendered":"CSS \u5c45\u4e2d\u7684\u4e09\u79cd\u65b9\u6cd5"},"content":{"rendered":"<p>1\u3001\u5b8c\u7f8e\u5c45\u4e2d\uff1a\u7edd\u5bf9\u5b9a\u4f4d + transform\uff0c\u9002\u7528\u4e8e\u5143\u7d20\u5bbd\u9ad8\u672a\u77e5\u7684\u5927\u591a\u6570\u60c5\u51b5<\/p>\n<pre class=\"brush:html;toolbar:false\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n\u00a0 &lt;meta charset=\"UTF-8\"&gt;\r\n\u00a0 &lt;title&gt;\u524d\u7aefABC-qdabc.cn&lt;\/title&gt;\r\n\u00a0 &lt;style&gt;\r\n\u00a0 \u00a0 .parent {\r\n\u00a0 \u00a0 \u00a0 position: relative;\r\n\u00a0 \u00a0 \u00a0 height: 300px;\r\n\u00a0 \u00a0 \u00a0 width: 300px;\r\n\u00a0 \u00a0 \u00a0 background: #ddd;;\r\n\u00a0 \u00a0 }\r\n\u00a0 \u00a0 .child {\r\n\u00a0 \u00a0 \u00a0 position: absolute;\r\n\u00a0 \u00a0 \u00a0 height: 100px;\r\n\u00a0 \u00a0 \u00a0 width: 100px;\r\n\u00a0 \u00a0 \u00a0 left: 50%;\r\n\u00a0 \u00a0 \u00a0 top: 50%;\r\n\u00a0 \u00a0 \u00a0 transform: translate(-50%, -50%);\r\n\u00a0 \u00a0 \u00a0 background: #333;\r\n\u00a0 \u00a0 }\r\n\u00a0 &lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\u00a0 &lt;div&gt;\r\n\u00a0 \u00a0 &lt;div&gt;&lt;\/div&gt;\r\n\u00a0 &lt;\/div&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>2\u3001\u5b8c\u7f8e\u5c45\u4e2d\uff1aflex\u5e03\u5c40\uff0c\u9700\u8981\u517c\u5bb9flex<\/p>\n<pre class=\"brush:html;toolbar:false\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n  &lt;meta charset=\"UTF-8\"&gt;\r\n  &lt;title&gt;\u524d\u7aefABC-qdabc.cn&lt;\/title&gt;\r\n  &lt;style&gt;\r\n    .parent {\r\n      display: flex;\r\n      justify-content: center;\r\n      align-items: center;\r\n      height: 300px;\r\n      width: 300px;\r\n      background: #ddd;\r\n    }\r\n    .child {\r\n      height: 100px;\r\n      width: 100px;\r\n      background: #333;\r\n    }\r\n  &lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n  &lt;div&gt;\r\n    &lt;div&gt;&lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>3\u3001\u5185\u8054\u5143\u7d20\u6c34\u5e73\u5c45\u4e2d\uff1atext-align\uff0c\u9002\u7528\u4e8e\u5e38\u89c4\u6587\u6863\u6d41\u4e2d\u7684\u5185\u8054\u5143\u7d20\uff08span\u3001a\u3001input\u7b49\uff09\uff0c\u4e5f\u5305\u62ecinline-block\u5143\u7d20<\/p>\n<pre class=\"brush:html;toolbar:false\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n  &lt;meta charset=\"UTF-8\"&gt;\r\n  &lt;title&gt;\u524d\u7aefABC-qdabc.cn&lt;\/title&gt;\r\n  &lt;style&gt;\r\n    .parent {\r\n      text-align: center;\r\n      height: 300px;\r\n      width: 300px;\r\n      background: #ddd;\r\n    }\r\n    .child {\r\n      height: 50px;\r\n      width: 100px;\r\n      background: #aaa;\r\n    }\r\n  &lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n  &lt;div&gt;\r\n    &lt;span&gt;span&lt;\/span&gt;&lt;br&gt;\r\n    &lt;input type=\"text\" value=\"input\"&gt;&lt;br&gt;\r\n    &lt;div style=\"display: inline-block;\"&gt;inline-block&lt;\/div&gt;&lt;br&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p class=\"post-copyright\">\u6b22\u8fce\u5206\u4eab\u672c\u6587\uff0c\u8f6c\u8f7d\u8bf7\u4fdd\u7559\u51fa\u5904\uff1a<a href=\"http:\/\/www.qdabc.cn\">\u524d\u7aefABC<\/a> &raquo; <a href=\"http:\/\/www.qdabc.cn\/?p=365\">CSS \u5c45\u4e2d\u7684\u4e09\u79cd\u65b9\u6cd5<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>1\u3001\u5b8c\u7f8e\u5c45\u4e2d\uff1a\u7edd\u5bf9\u5b9a\u4f4d + transform\uff0c\u9002\u7528\u4e8e\u5143\u7d20\u5bbd\u9ad8\u672a\u77e5\u7684\u5927\u591a\u6570\u60c5\u51b5 &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; \u00a0 &lt;meta c [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":318,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[28,79],"_links":{"self":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/365"}],"collection":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=365"}],"version-history":[{"count":1,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/365\/revisions"}],"predecessor-version":[{"id":366,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/365\/revisions\/366"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/media\/318"}],"wp:attachment":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=365"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=365"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=365"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}