Giter Site home page Giter Site logo

Comments (4)

aryankashyap7 avatar aryankashyap7 commented on July 18, 2024

@loretogutierrezjr Elaborate more on the changes you wanna add over there.

from cheatsheets-for-developers.

loretogutierrezjr avatar loretogutierrezjr commented on July 18, 2024

@loretogutierrezjr Elaborate more on the changes you wanna add over there.
Hi Aryan,
I'm not sure how to display here my pull request but here is the added info.

CSS

BASICS

Syntax - basic code sctructure of CSS

   selector { 
    property: value; 
    property2: value2; }

Clearfix - to clear its child elements automatically without any additional markup.

    .clearfix:after {
        clear: both;
        content: " ";
        display: block;
        font-size: 0;
        height: 0;
        visibility: hidden; }
    .clearfix { display: inline-block; }
    * html .clearfix { height: 1%; }
    .clearfix { display: block; }

SELECTORS & Descriptions

Selectors Descriptions
* all elements
div all div tags
div,p all divs and paragraphs
div p paragraphs inside divs
div > p all p tags, one level deep in div
div + p p tags immediately after div
div ~ p p tags preceded by div
.classname all elements with class
#idname element with ID
div.classname divs with certain classname
div#idname div with certain ID
#idname* all elements inside #idname

from cheatsheets-for-developers.

aryankashyap7 avatar aryankashyap7 commented on July 18, 2024

The application for element selectors and basics is already there. Try updating some valid changes into other sheets or you can eventually add new ones.

from cheatsheets-for-developers.

loretogutierrezjr avatar loretogutierrezjr commented on July 18, 2024

Okay.. Thanks

from cheatsheets-for-developers.

Related Issues (20)

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.