Git Product home page Git Product logo

miscellaneous's People

Stargazers

 avatar

Watchers

 avatar  avatar

miscellaneous's Issues

CSS 布局的一些

  • box-sizing 属性有常用的俩个值
    • content-boxwidthheight包含paddingborder的值,等同于标准盒子模型

    • padding-boxwidthheight包含padding的值

    • border-boxwidthheight不包含paddingborder的值

    • image


  • 使用flex实现垂直居中布局
    .vertical-container {
      height: 200px;
      display: flex;
      display: -webkit-flex;
      align-items: center; // 垂直居中
      -webkit-align-items: center;
      justify-content: center; // 水平居中
      -webkit-justify-content: center;
    }

React 的一些

PRE-STEP 0️⃣

Environment Installation 🍦

[windows] : use Babun that provide Cygwin environment and bundle some useful tools instead of CMD

  • Node must be required
  • $ npm i -g create-react-app that is a react sead project scaffold created by React

Knowledgemap


STEP1 1️⃣

What

  • A JAVASCRIPT LIBRARY FOR BUILDING USER INTERFACES

Why

  • Component is base on JAVASCRIPT instead of template , can easily pass data or keep state
  • NO DOM , friendly to devloper
  • Shadow DOM, Component, toward future
  • learn once, use anywhere

STEP2 2️⃣

TODO ...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.