SlideShare une entreprise Scribd logo
1  sur  41
Télécharger pour lire hors ligne
CSS
IN
React
Joe Sei     @joesei
THE BAD
THE GOOD
AND THE UGLY
Familiarity - (CSS Level 1 released 19 years ago)
Optimized Browser parsing and layout
JavaScript DOM API
Inheritance structure - JSON like
Media Queries - size and feature detection
Pseudo Selectors - browser states
Basic math via calc()
CSS3 (THE GOOD)
Flat - nested rules not supported
Needs vendor pre xes
No variables, no functions
Some dynamic updates still require JavaScript
CSS3 (THE BAD)
Global namespace pollution
Importance, speci city wars, & eventually !important
Nondeterministic, depends on source order
Encapsulation - sharing code across components is scary
Changes & dead code elimination are manual
Missing rules and syntax errors at runtime
CSS3 (THE UGLY)
(like ux for CSS)
Object-Oriented CSS (OOCSS)
Scalable and Modular Architecture for CSS (SMACSS)
Block, Element, Modi er (BEM)
ATOMIC CSS
SUIT CSS
METHODOLOGIES
(like babel for CSS)
SASS
LESS
Stylus
PostCSS
Autopre xer / cssnext
PRE/POST PROCESSORS
a like button
EXAMPLE:
HTML
<button class="btn btn‐primary"> 
  Like <span class="badge">9</span> 
</button> 
OR
JSX & REACT
const LikeButton = ({ likes }) => { 
  return ( 
    <button className="btn btn‐primary"> 
      Like <span className="badge">{likes}</span> 
    </button> 
  ) 
} 
DOM API
1. const LikeButton = ({ likes }) => {
2. return (
3. <button className="btn btn-primary">
4. Like <span className="badge">{likes}</span>
5. </button>
6. )
7. }
8.
AND
CSS3.btn { 
  display: inline‐block; 
  border: 0; 
  padding: 6px 12px; 
} 
.btn.btn‐primary { 
  color: #fff; 
  background‐color: #f74A27; 
} 
.btn.btn‐primary:hover { 
  background‐color: #ff7857; 
} 
.btn.btn‐primary > .badge { 
  color: #f74A27; 
  background‐color: #fff; 
} 
.btn > .badge { 
  display: inline‐block; 
  border‐radius: 10px; 
  padding: 3px 6px; 
} 
  
SASS.btn { 
  display: inline‐block; 
  border: 0; 
  padding: 6px 12px; 
  &.btn‐primary { 
    color: $text‐color; 
    background‐color: $button‐color; 
    &:hover { 
      background‐color: $button‐color‐hover; 
    } 
    .badge { 
      color: $button‐color; 
      background‐color: $text‐color; 
    } 
  } 
   
  .badge { 
    display: inline‐block; 
    border‐radius: 10px; 
    padding: 3px 6px; 
  } 
} 
RESULTLike  9
NOW LET'S TRY THE SAME
WITH INLINE STYLES
in React
JSONconst styles = { 
  'btn': { 
    'display': 'inline‐block', 
    'border': '0', 
    'padding': '6px 12px' 
  }, 
  'btn_primary': { 
    'color': '#fff', 
    'backgroundColor': '#f74A27' 
  }, 
  'btn_primary_hover': { 
    'backgroundColor': '#ff7857' 
  }, 
  'btn_primary__badge': { 
    'color': '#f74A27', 
    'backgroundColor': '#fff' 
  } 
  'btn__badge': { 
    'display': 'inline‐block', 
    'borderRadius': '10px', 
    'padding': '3px 6px' 
  } 
} 
REACTimport React, { Component } from 'react' 
import { styles } from './styles' 
export const LikeButton = ({ likes }) => { 
  return ( 
    <button style={{ 
      ...styles.btn, 
      ...styles.btn_primary 
      }}> 
      Like 
      <span 
        style={{ 
        ...styles.btn__badge, 
        ...styles.btn_primary__badge 
        }}> 
        {likes} 
      </span> 
    </button> 
  ) 
} 
  
CSS IN JAVASCRIPT
1. const styles = {
2. 'btn': {
3. 'display': 'inline-block',
4. 'border': '0',
5. 'padding': '6px 12px'
6. },
7.
8. 'btn_primary': {
9. 'color': '#fff',
10. 'backgroundColor': '#f74A27'
11. },
12. 'btn_primary_hover': {
13. 'backgroundColor': '#ff7857'
14. },
IN YOUR COMPONENT
1. import React, { Component } from 'react'
2.
3. import { styles } from './styles'
4.
5. export const LikeButton = ({ likes }) => {
6. return (
7. <button style={{
8. ...styles.btn,
9. ...styles.btn_primary
10. }}>
11. Like
12. <span
13. style={{
14. ...styles.btn__badge,
RESULT WITH JSONLike  9
No pseudo selectors :hover :before etc.
No media queries @media viewport etc.
No rule nesting
No auto pre xing
No CSS extraction
FOUC
ISSUES WITH USING THE PLAIN
JSON object
Radium
react-css-modules
styled-components
aphrodite, jss, cxs, csjs, glamor, so many more
FRAMEWORKS FOR
CSS in JS
RADIUMexport const styles = { 
  btn: { 
    display: 'inline‐block', 
    border: '0', 
    padding: '6px 12px', 
    btn_primary: { 
      color: '#fff', 
      backgroundColor: '#f74A27', 
      ':hover': { 
        backgroundColor: '#ff7857' 
      }, 
      badge: { 
        color: '#f74A27', 
        backgroundColor: '#fff' 
      } 
    } 
    badge: { 
      display: 'inline‐block', 
      borderRadius: '10px', 
      padding: '3px 6px' 
    } 
  } 
} 
REACTimport React, { Component } from 'react' 
import Radium from 'radium' 
import { styles } from './styles' 
@Radium 
class LikeButton extends Component { 
  render () { 
    const { likes } = this.props 
    return ( 
      <button style={[ 
        styles.btn, 
        styles.btn.btn_primary 
      ]}> 
        Like <span style={[ 
          styles.btn.badge, 
          styles.btn.btn_primary.badge 
        ]}>{likes}</span> 
      </button> 
    ) 
  } 
} 
export default LikeButton 
  
RADIUM STYLE SYNTAX
1. export const styles = {
2. btn: {
3. display: 'inline-block',
4. border: '0',
5. padding: '6px 12px',
6.
7. btn_primary: {
8. color: '#fff',
9. backgroundColor: '#f74A27',
10.
11. ':hover': {
12. backgroundColor: '#ff7857'
13. },
14.
RADIUM REACT SYNTAX
1. import React, { Component } from 'react'
2. import Radium from 'radium'
3. import { styles } from './styles'
4.
5. @Radium
6. class LikeButton extends Component {
7. render () {
8. const { likes } = this.props
9. return (
10. <button style={[
11. styles.btn,
12. styles.btn.btn_primary
13. ]}>
14. Like <span style={[
Wraps your function or component with @decorators
Creates a class to manage state for :hover :active :focus
Radium.getState(this.state, 'btnPrimary', ':hover')
Style similar child elements with .map()
matchMedia for media queries - IE poly ll, server-side?
Styles are inline, extract into CSS for production?
RADIUM NOTES
No globals (with caveats)
Built in dead code elimination, only used components
Presentation logic is in your view, nd and edit
State, constants
Composition, loops, computation
Distribute via import and export
Dynamic styling, app & DOM state e.g. data attributes
Some :pseudo selectors re-implemented in JavaScript
For example :last-child becomes i === arr.length - 1
INLINE STYLES (THE GOOD)
No ::after ::before ::selection
Media queries have to use window.matchMedia()
Autopre xing display: -webkit-flex; display: flex;
Animations via @keyframes re-implemented in JS
Highest priority before !important No Speci city Cascading
Performance
Debugging in devtools is a pain
Duplicate markup for similar elements
INLINE STYLES (THE BAD)
CSS MODULES
Based on Interoperable CSS - loadable, linkable CSS
Works with SASS, PostCSS etc.
Broken CSS = compile error
Using an unde ned CSS Module = no warning
REACT-CSS-MODULES
SASS@import "variables.scss"; 
.btn { 
  display: inline‐block; 
  border: 0; 
  padding: 6px 12px; 
  &.btn‐primary { 
    color: $text‐color; 
    background‐color: $button‐color; 
    &:hover { 
      background‐color: $button‐color‐hover; 
    } 
    .badge { 
      color: $button‐color; 
      background‐color: $text‐color; 
    } 
  } 
  .badge { 
    display: inline‐block; 
    border‐radius: 10px; 
    padding: 3px 6px; 
  } 
} 
REACTimport React, { Component } from 'react' 
import CSSModules from 'react‐css‐modules' 
import styles from '../styles/likebutton.scss' 
@CSSModules(styles, {allowMultiple: true}) 
class LikeButton extends Component { 
  render () { 
    const { likes } = this.props 
    return ( 
      <button styleName="btn btn‐primary"> 
        Like <span styleName="badge">{likes}</span> 
      </button> 
    ) 
  } 
} 
export default LikeButton 
  
REACT-CSS-MODULES SYNTAX
1. import React, { Component } from 'react'
2. import CSSModules from 'react-css-modules'
3. import styles from '../styles/likebutton.scss'
4.
5. @CSSModules(styles, {allowMultiple: true})
6. class LikeButton extends Component {
7. render () {
8. const { likes } = this.props
9. return (
10. <button styleName="btn btn-primary">
11. Like <span styleName="badge">{likes}</span>
12. </button>
13. )
14. }
styles object or this.props.styles[yourClasslassName]
Con gure your component classnames via localIdentName
Webpack CSS loader [path]___[name]__[local]___[hash:base64:5]
Generated classname styles-___likebutton__btn-primary___HYx7V
No overruling, intentionally nor unintentionally
Composition composes: parentClass same as @extend in Sass
Others from ICSS :global :export :import
Use extract text plugin in production
REACT-CSS-MODULES NOTES
STYLED COMPONENTS
STYLEDimport styled from 'styled‐components' 
const StyledLikeButton = styled.button` 
  display: inline‐block; 
  border: 0; 
  padding: 6px 12px, 
  &.btn‐primary { 
    color: #fff; 
    background‐color: #f74A27; 
    &:hover { 
      background‐color: #ff7857; 
    } 
    .badge { 
      color: #f74A27; 
      background‐color: ${THEME.bgColor}; 
    } 
  } 
  .badge { 
    display: inline‐block; 
    border‐radius: 10px; 
    padding: 3px 6px; 
  } 
` 
export default StyledLikeButton 
REACTimport React, { Component } from 'react' 
import StyledLikeButton from './StyledLikeButton' 
class LikeButton extends Component { 
  render () { 
    const { likes } = this.props 
    return ( 
      <StyledLikeButton className="btn‐primary"> 
        Like <span className="badge">{likes}</span> 
      </StyledLikeButton> 
    ) 
  } 
} 
export default LikeButton 
  
STYLED COMPONENTS SYNTAX
1. import styled from 'styled-components'
2.
3. const StyledLikeButton = styled.button`
4. display: inline-block;
5. border: 0;
6. padding: 6px 12px,
7. &.btn-primary {
8. color: #fff;
9. background-color: #f74A27;
10. &:hover {
11. background-color: #ff7857;
12. }
13. .badge {
14. color: #f74A27;
STYLED COMPONENTS USAGE
1. import React, { Component } from 'react'
2. import StyledLikeButton from './StyledLikeButton'
3.
4. class LikeButton extends Component {
5.
6. render () {
7. const { likes } = this.props
8. return (
9. <StyledLikeButton className="btn-primary">
10. Like <span className="badge">{likes}</span>
11. </StyledLikeButton>
12. )
13. }
14.
Autopre xing included for free
Write plain CSS, no weird poly lls needed
Generated classnames are namespaced btn-primary gjkSC
Injects style tags into the document head
Supports server-side rendering, but not extract text plugin
keyframes helper keeps your rules local to your component
Theming is built in
STYLED COMPONENTS NOTES
Web Components and Shadow DOM
cssnext
CSS4
¿¡ !?
WHAT'S NEXT
View examples on Github
THANK YOU!

Contenu connexe

Tendances

From PSD to WordPress Theme: Bringing designs to life
From PSD to WordPress Theme: Bringing designs to lifeFrom PSD to WordPress Theme: Bringing designs to life
From PSD to WordPress Theme: Bringing designs to lifeDerek Christensen
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Erin M. Kidwell
 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?Denise Jacobs
 
CSS3: Simply Responsive
CSS3: Simply ResponsiveCSS3: Simply Responsive
CSS3: Simply ResponsiveDenise Jacobs
 
CSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondCSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondDenise Jacobs
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & ResourcesClarissa Peterson
 
Html standards presentation
Html standards presentationHtml standards presentation
Html standards presentationTiago Cardoso
 
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Nicholas Zakas
 
CSS3 Media Queries
CSS3 Media QueriesCSS3 Media Queries
CSS3 Media QueriesRuss Weakley
 
Using LESS, the CSS Preprocessor: J and Beyond 2013
Using LESS, the CSS Preprocessor: J and Beyond 2013Using LESS, the CSS Preprocessor: J and Beyond 2013
Using LESS, the CSS Preprocessor: J and Beyond 2013Andrea Tarr
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015Rob Davarnia
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standardsgleddy
 
Rapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with BootstrapRapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with BootstrapJosh Jeffryes
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3Doris Chen
 
Five Pound App talk: hereit.is, Web app architecture, REST, CSS3
Five Pound App talk: hereit.is, Web app architecture, REST, CSS3Five Pound App talk: hereit.is, Web app architecture, REST, CSS3
Five Pound App talk: hereit.is, Web app architecture, REST, CSS3Jamie Matthews
 

Tendances (20)

From PSD to WordPress Theme: Bringing designs to life
From PSD to WordPress Theme: Bringing designs to lifeFrom PSD to WordPress Theme: Bringing designs to life
From PSD to WordPress Theme: Bringing designs to life
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQuery
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?
 
CSS3: Simply Responsive
CSS3: Simply ResponsiveCSS3: Simply Responsive
CSS3: Simply Responsive
 
CSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondCSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to Respond
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
 
Html standards presentation
Html standards presentationHtml standards presentation
Html standards presentation
 
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
 
CSS3 Media Queries
CSS3 Media QueriesCSS3 Media Queries
CSS3 Media Queries
 
Using LESS, the CSS Preprocessor: J and Beyond 2013
Using LESS, the CSS Preprocessor: J and Beyond 2013Using LESS, the CSS Preprocessor: J and Beyond 2013
Using LESS, the CSS Preprocessor: J and Beyond 2013
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standards
 
Lightning fast sass
Lightning fast sassLightning fast sass
Lightning fast sass
 
Rapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with BootstrapRapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with Bootstrap
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
 
Bootstrap Framework
Bootstrap Framework Bootstrap Framework
Bootstrap Framework
 
Bootstrap [part 2]
Bootstrap [part 2]Bootstrap [part 2]
Bootstrap [part 2]
 
Five Pound App talk: hereit.is, Web app architecture, REST, CSS3
Five Pound App talk: hereit.is, Web app architecture, REST, CSS3Five Pound App talk: hereit.is, Web app architecture, REST, CSS3
Five Pound App talk: hereit.is, Web app architecture, REST, CSS3
 

Similaire à CSS IN REACT

Build a better UI component library with Styled System
Build a better UI component library with Styled SystemBuild a better UI component library with Styled System
Build a better UI component library with Styled SystemHsin-Hao Tang
 
CSS Methodology
CSS MethodologyCSS Methodology
CSS MethodologyZohar Arad
 
The Future State of Layout
The Future State of LayoutThe Future State of Layout
The Future State of LayoutStephen Hay
 
Styling components with JavaScript
Styling components with JavaScriptStyling components with JavaScript
Styling components with JavaScriptbensmithett
 
Styling Components with JavaScript: MelbCSS Edition
Styling Components with JavaScript: MelbCSS EditionStyling Components with JavaScript: MelbCSS Edition
Styling Components with JavaScript: MelbCSS Editionbensmithett
 
CSS Walktrough Internship Course
CSS Walktrough Internship CourseCSS Walktrough Internship Course
CSS Walktrough Internship CourseZoltan Iszlai
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksAndolasoft Inc
 
CSS101 - Concept Fundamentals for non UI Developers
CSS101 - Concept Fundamentals for non UI DevelopersCSS101 - Concept Fundamentals for non UI Developers
CSS101 - Concept Fundamentals for non UI DevelopersDarren Gideon
 
Drawing a Circle Three Ways: Generating Graphics for the Web
Drawing a Circle Three Ways: Generating Graphics for the WebDrawing a Circle Three Ways: Generating Graphics for the Web
Drawing a Circle Three Ways: Generating Graphics for the WebCloudinary
 
Implementing CSS support for React Native
Implementing CSS support for React NativeImplementing CSS support for React Native
Implementing CSS support for React NativeKristerKari
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
 
CSS For Coders
CSS For CodersCSS For Coders
CSS For Codersggfergu
 
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}Eric Carlisle
 
Rock Solid CSS Architecture
Rock Solid CSS ArchitectureRock Solid CSS Architecture
Rock Solid CSS ArchitectureJohn Need
 
BEM Methodology — @Frontenders Ticino —17/09/2014
BEM Methodology — @Frontenders Ticino —17/09/2014BEM Methodology — @Frontenders Ticino —17/09/2014
BEM Methodology — @Frontenders Ticino —17/09/2014vzaccaria
 
9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classes9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classesIn a Rocket
 

Similaire à CSS IN REACT (20)

Build a better UI component library with Styled System
Build a better UI component library with Styled SystemBuild a better UI component library with Styled System
Build a better UI component library with Styled System
 
CSS Methodology
CSS MethodologyCSS Methodology
CSS Methodology
 
The Future State of Layout
The Future State of LayoutThe Future State of Layout
The Future State of Layout
 
Styling components with JavaScript
Styling components with JavaScriptStyling components with JavaScript
Styling components with JavaScript
 
Styling Components with JavaScript: MelbCSS Edition
Styling Components with JavaScript: MelbCSS EditionStyling Components with JavaScript: MelbCSS Edition
Styling Components with JavaScript: MelbCSS Edition
 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
 
Css and its future
Css and its futureCss and its future
Css and its future
 
CSS Walktrough Internship Course
CSS Walktrough Internship CourseCSS Walktrough Internship Course
CSS Walktrough Internship Course
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS Tricks
 
CSS101 - Concept Fundamentals for non UI Developers
CSS101 - Concept Fundamentals for non UI DevelopersCSS101 - Concept Fundamentals for non UI Developers
CSS101 - Concept Fundamentals for non UI Developers
 
Drawing a Circle Three Ways: Generating Graphics for the Web
Drawing a Circle Three Ways: Generating Graphics for the WebDrawing a Circle Three Ways: Generating Graphics for the Web
Drawing a Circle Three Ways: Generating Graphics for the Web
 
Implementing CSS support for React Native
Implementing CSS support for React NativeImplementing CSS support for React Native
Implementing CSS support for React Native
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
CSS For Coders
CSS For CodersCSS For Coders
CSS For Coders
 
Pfnp slides
Pfnp slidesPfnp slides
Pfnp slides
 
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
 
Rock Solid CSS Architecture
Rock Solid CSS ArchitectureRock Solid CSS Architecture
Rock Solid CSS Architecture
 
slides-students-C04.pdf
slides-students-C04.pdfslides-students-C04.pdf
slides-students-C04.pdf
 
BEM Methodology — @Frontenders Ticino —17/09/2014
BEM Methodology — @Frontenders Ticino —17/09/2014BEM Methodology — @Frontenders Ticino —17/09/2014
BEM Methodology — @Frontenders Ticino —17/09/2014
 
9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classes9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classes
 

Dernier

CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catcherssdickerson1
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 

Dernier (20)

CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 

CSS IN REACT