Jina Bolton

Carsonified Team
Carsonified TeamCarsonified
3                JINA BOLTON

    http://creatingsexystylesheets.com/
Jina Bolton
The Art & Science of css
by Cameron Adams
  Jina Bolton
  David Johnson
  Steve Smith
  Jonathan Snook




  Published by SitePoint
3
css
“css 3
 A Giant Serving
 of FAIL!
          — a lex rus se l l
             http://alex.dojotoolkit.org/?p=625
“css 3
 quot;Third Time Lucky#!
          — andy cla rke
1996
css 1
1997
css 2
css 2.1
candidate recommendation
css 3 modul!
Sele$ors
               Backgrounds
               & Borders
Multi%column
Layout
      Media        Advanced
                   Layout
      Queries
Grid
Positioning
Backgrounds
& Borders
    Style any box&s borders and background
    including attach multiple background%
    images to a single element.
Backgrounds & Borders
% border-radius

% border-break

% border-image

% box-shadow
Jina Bolton
<div class=quot;vcardquot;>
    <div class=quot;addr-blquot;>
        <div class=quot;addr-trquot;>
           …
        </div>
    </div>
</div>
.vcard {
    background:
       #000
       url(a-grad.gif)
       repeat-x;
}
.addr-bl {
    background:
       url(a-bl.gif)
       100% 0
       no-repeat;
}
.addr-tr {
    background:
       url(a-tr.gif)
       100% 0
       no-repeat;
}
<div class=quot;vcardquot;>…</div>
.vcard {
    background-color: #000;

    background-image:
       url(a-grad.gif),
       url(a-bl.gif),
       url(a-tr.gif);

    background-repeat:
       repeat-x,
       no-repeat,
       no-repeat;

    background-position:
       0 0,
       100% 0,
       0 100%;
}
Jina Bolton
Jina Bolton
Jina Bolton
Jina Bolton
Jina Bolton
Jina Bolton
Jina Bolton
Multi%column
Layout
    Making it simpler to create column layouts
    without additional markup by using
    column widths, counts, gaps and rules.
Jina Bolton
Jina Bolton
<div class=quot;entry-contentquot;>
    <div class=quot;col firstquot;>
        …
    </div>
    <div class=quot;colquot;>
        …
    </div>
</div>
.entry-content .col {
    float: left;
    width: 467px;
    margin-left: 30px;
}
.entry-content .first {
    margin-left: 0;
}



/* .entry-content
    clear-fix rules */
<div class=quot;entry-contentquot;>
    …
</div>



.entry-content {
    column-count: 2;
    column-gap: 30px;
}
Jina Bolton
<div class=quot;entry-contentquot;>
    …
</div>



.entry-content {
    column-width: 270px;
    column-gap: 30px;
}
<div class=quot;vcardquot;>…</div>



.vcard {
    border-image:
       url(quot;border.pngquot;)
       30 30 30 30
       stretch;

    border:
       double green 1em;
}
Advanced
Layout
   Aims to fully separate visual layout order
   from a document&s content by de'ning
   (slots! in a grid in which content can )ow
   or be placed, or that remain empty * all
   without additional markup.
Jina Bolton
a   b   c   d


e           h
    f   g


i   j   k   l
a   a   c   d


e           g
    e   g


i   j   k   l
Jina Bolton
Jina Bolton
@   @   .   .


e           h
    @   @


.   j   j   l
Grid
Positioning
    Gives the ability to add invisible grid rules
    to create grid layouts quot;like in books and
    newspapers#, and uses sizing and new )oat
    properties for placing content.
Jina Bolton
Jina Bolton
<div class=quot;entry-contentquot;>
    …
</div>



.entry-content {
    column-count: 4;
    column-gap: 30px;
}
Jina Bolton
.entry-content {
    grid-columns:
       (30px * *)[4];

    column-count: 4;
    column-gap: 30px;
}
Jina Bolton
.entry-content {
    grid-columns:
       (30px * *)[4];

    grid-rows:
       9em 33.3% *;

    column-count: 4;
    column-gap: 30px;
}
Jina Bolton
<div class=quot;entry-contentquot;>
    …
    <img src=quot;sushi.jpgquot;
        class=quot;photoquot;
        alt=quot;quot; />
    …
</div>
.entry-content img.photo {
    float: page bottom left;
    float-offset: 4gr 1gr;
}
Jina Bolton
<div class=quot;entry-contentquot;>
    <h2>What is Sushi?</h2>
    …
    <img src=quot;sushi.jpgquot;
        class=quot;photoquot;
        alt=quot;quot; />
</div>
.entry-content h2 {
         float: page top left;
         width: 6gr;
         height: 1gr;
         margin-left: -30px;
ic   }

     .entry-content img.photo {
         float: page bottom left;
         float-offset: 4gr 1gr;
     }
Sele$ors
    Re'ned sele$ors to target an element
    based on an attribute or position in the
    document )ow plus new pseudo%classes
    and pseudo%elements.
Sele$ors
% E:only-of-type
 an element which is the only sibling of its type



% E:not(s)
 an element that d+s not match simple sele$ors



%E ~ F
 an F element preceded by an E element
Sele$ors

E:nth-child(n)
           an element which is the
           n%th child of its parent
Jina Bolton
Jina Bolton
<tr class=quot;altquot;></tr>

<tr></tr>




tr.alt td {
    background: #ecffd9;
}
<tr></tr>



tr:nth-child(odd) td {
    background: #ecffd9;
}
Jina Bolton
<tr class=quot;high-rankquot;>…</tr>
<tr class=quot;high-rankquot;>…</tr>
<tr class=quot;high-rankquot;>…</tr>
<tr>…</tr>




tr.high-rank td {
    background: #ecffd9;
}
<tr>…</tr>




tr:nth-child(-n+3) td {
    background: #ecffd9;
}
Sele$ors

E:nth-last-child(n)
           an element which is the
           n%th child of its parent,
           counting from the la,
           one
Jina Bolton
<tr>…</tr>
<tr class=quot;low-rankquot;>…</tr>
<tr class=quot;low-rankquot;>…</tr>
<tr class=quot;low-rankquot;>…</tr>




tr.low-rank td {
    opacity: .75;
}
<tr>…</tr>




tr:nth-last-child(-n+2) td {
    opacity: .75;
}
Sele$ors

E:nth-of-type(n)
           an element which is the
           n%th sibling of its type
Jina Bolton
Jina Bolton
<p class=quot;introquot;>…</p>
<p>…</p>



p.intro {
    background: #fafcf5;
    font-size: 1.3em;
    color: #060;
}
<p>…</p>



p:first-of-type {
    background: #fafcf5;
    font-size: 1.3em;
    color: #030;
}
Media Queries
    Extending the usefulness of media types in
    combination with window widths, heights
    and aspe$ ratio.
Resources
CSS ELEVEN IS AN INTERNATIONAL GROUP OF VISUAL WEB
   DESIGNERS AND DEVELOPERS WHO ARE COMMITTED TO
HELPING THE W3C'S CSS WORKING GROUP TO BETTER DELIVER
THE TOOLS THAT ARE NEEDED TO DESIGN TOMORROW'S WEB.
Resources
% w3c Introdu$ion to css 3
 w3.org/TR/css3-roadmap



% css Working Group Blog
 w3.org/blog/CSS



%456 Berea Street
 456bereastreet.com



% css3.info
Resources
% A Li, Apart
alistapart.com



% Transcending css Support
transcendingcss.com/support/
creatingsexy,ylesheets.com
Q&A
1 of 81

Recommended

HTML5 and CSS3 Refresher by
HTML5 and CSS3 RefresherHTML5 and CSS3 Refresher
HTML5 and CSS3 RefresherIvano Malavolta
4.5K views133 slides
Convidar para page !! by
Convidar para page !!Convidar para page !!
Convidar para page !!Jhonny Batista
299 views7 slides
CSS3 Refresher by
CSS3 RefresherCSS3 Refresher
CSS3 RefresherIvano Malavolta
1.3K views73 slides
画像Hacks by
画像Hacks画像Hacks
画像HacksYusuke Wada
3.4K views51 slides
Why Hacking WordPress Search Isn't Some Big Scary Thing by
Why Hacking WordPress Search Isn't Some Big Scary ThingWhy Hacking WordPress Search Isn't Some Big Scary Thing
Why Hacking WordPress Search Isn't Some Big Scary ThingChris Reynolds
2K views74 slides
introduction to Django in five slides by
introduction to Django in five slides introduction to Django in five slides
introduction to Django in five slides Dan Chudnov
978 views6 slides

More Related Content

What's hot

wget.pl by
wget.plwget.pl
wget.plYasuhiro Onishi
1.2K views23 slides
gate-ec-previous-year-papers-1991-2009 by
gate-ec-previous-year-papers-1991-2009gate-ec-previous-year-papers-1991-2009
gate-ec-previous-year-papers-1991-2009saumyajsr
813 views367 slides
8. Php MongoDB stergerea unui document by
8. Php MongoDB stergerea unui document8. Php MongoDB stergerea unui document
8. Php MongoDB stergerea unui documentRazvan Raducanu, PhD
128 views5 slides
Make your own wp cli command in 10min by
Make your own wp cli command in 10minMake your own wp cli command in 10min
Make your own wp cli command in 10minIvelina Dimova
1.4K views21 slides
WordPress 3.1 at DC PHP by
WordPress 3.1 at DC PHPWordPress 3.1 at DC PHP
WordPress 3.1 at DC PHPandrewnacin
1.1K views31 slides
linieaire regressie by
linieaire regressielinieaire regressie
linieaire regressieMwalima Peltenburg
261 views3 slides

What's hot(20)

gate-ec-previous-year-papers-1991-2009 by saumyajsr
gate-ec-previous-year-papers-1991-2009gate-ec-previous-year-papers-1991-2009
gate-ec-previous-year-papers-1991-2009
saumyajsr813 views
Make your own wp cli command in 10min by Ivelina Dimova
Make your own wp cli command in 10minMake your own wp cli command in 10min
Make your own wp cli command in 10min
Ivelina Dimova1.4K views
WordPress 3.1 at DC PHP by andrewnacin
WordPress 3.1 at DC PHPWordPress 3.1 at DC PHP
WordPress 3.1 at DC PHP
andrewnacin1.1K views
SULTHAN's - PHP MySQL programs by SULTHAN BASHA
SULTHAN's - PHP MySQL programsSULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programs
SULTHAN BASHA91 views
My sql presentation by Nikhil Jain
My sql presentationMy sql presentation
My sql presentation
Nikhil Jain3.8K views
Dart : one language to rule them all - MixIT 2013 by Sébastien Deleuze
Dart : one language to rule them all - MixIT 2013Dart : one language to rule them all - MixIT 2013
Dart : one language to rule them all - MixIT 2013
Sébastien Deleuze5.1K views
Automatically Spotting Cross-language Relations by Federico Tomassetti
Automatically Spotting Cross-language RelationsAutomatically Spotting Cross-language Relations
Automatically Spotting Cross-language Relations
Federico Tomassetti1.1K views
Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej by Pertti Paavola
Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkejElinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej
Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej
Pertti Paavola1.7K views
Componentization css angular by David Amend
Componentization css angularComponentization css angular
Componentization css angular
David Amend441 views
Sassive Aggressive: Using Sass to Make Your Life Easier (Refresh Boston Version) by Adam Darowski
Sassive Aggressive: Using Sass to Make Your Life Easier (Refresh Boston Version)Sassive Aggressive: Using Sass to Make Your Life Easier (Refresh Boston Version)
Sassive Aggressive: Using Sass to Make Your Life Easier (Refresh Boston Version)
Adam Darowski1.1K views
Links/Деловой и денежный мир by Cavatex
Links/Деловой и денежный мирLinks/Деловой и денежный мир
Links/Деловой и денежный мир
Cavatex3.1K views

Similar to Jina Bolton

Google Developers Experts Summit 2017 - CSS Layout by
Google Developers Experts Summit 2017 - CSS Layout Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout Rachel Andrew
1.4K views93 slides
An Event Apart Seattle - New CSS Layout Meets the Real World by
An Event Apart Seattle - New CSS Layout Meets the Real WorldAn Event Apart Seattle - New CSS Layout Meets the Real World
An Event Apart Seattle - New CSS Layout Meets the Real WorldRachel Andrew
566 views146 slides
World of CSS Grid by
World of CSS GridWorld of CSS Grid
World of CSS GridElad Shechter
958 views40 slides
An Event Apart DC - New CSS Layout meets the Real World by
An Event Apart DC - New CSS Layout meets the Real WorldAn Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real WorldRachel Andrew
408 views147 slides
CSS- Smacss Design Rule by
CSS- Smacss Design RuleCSS- Smacss Design Rule
CSS- Smacss Design Rule皮馬 頑
254 views57 slides
Css3 by
Css3Css3
Css3Vladimir Varun
998 views24 slides

Similar to Jina Bolton(20)

Google Developers Experts Summit 2017 - CSS Layout by Rachel Andrew
Google Developers Experts Summit 2017 - CSS Layout Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout
Rachel Andrew1.4K views
An Event Apart Seattle - New CSS Layout Meets the Real World by Rachel Andrew
An Event Apart Seattle - New CSS Layout Meets the Real WorldAn Event Apart Seattle - New CSS Layout Meets the Real World
An Event Apart Seattle - New CSS Layout Meets the Real World
Rachel Andrew566 views
An Event Apart DC - New CSS Layout meets the Real World by Rachel Andrew
An Event Apart DC - New CSS Layout meets the Real WorldAn Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real World
Rachel Andrew408 views
CSS- Smacss Design Rule by 皮馬 頑
CSS- Smacss Design RuleCSS- Smacss Design Rule
CSS- Smacss Design Rule
皮馬 頑254 views
Introduction to CSS Grid by Kara Luton
Introduction to CSS GridIntroduction to CSS Grid
Introduction to CSS Grid
Kara Luton128 views
New CSS Meets the Real World by Rachel Andrew
New CSS Meets the Real WorldNew CSS Meets the Real World
New CSS Meets the Real World
Rachel Andrew1.4K views
What I discovered about layout vis CSS Grid by Rachel Andrew
What I discovered about layout vis CSS GridWhat I discovered about layout vis CSS Grid
What I discovered about layout vis CSS Grid
Rachel Andrew9.5K views
New CSS Layout Meets the Real World by Rachel Andrew
New CSS Layout Meets the Real WorldNew CSS Layout Meets the Real World
New CSS Layout Meets the Real World
Rachel Andrew864 views
Evrone.ru / BEM for RoR by Dmitry KODer
Evrone.ru / BEM for RoREvrone.ru / BEM for RoR
Evrone.ru / BEM for RoR
Dmitry KODer2K views
Refresh Tallahassee: The RE/MAX Front End Story by Rachael L Moore
Refresh Tallahassee: The RE/MAX Front End StoryRefresh Tallahassee: The RE/MAX Front End Story
Refresh Tallahassee: The RE/MAX Front End Story
Rachael L Moore655 views
Auto tools by 祺 周
Auto toolsAuto tools
Auto tools
祺 周313 views
Implementing Awesome: An HTML5/CSS3 Workshop by Shoshi Roberts
Implementing Awesome: An HTML5/CSS3 WorkshopImplementing Awesome: An HTML5/CSS3 Workshop
Implementing Awesome: An HTML5/CSS3 Workshop
Shoshi Roberts3.5K views
The Near Future of CSS by Rachel Andrew
The Near Future of CSSThe Near Future of CSS
The Near Future of CSS
Rachel Andrew109.8K views

More from Carsonified Team

Chris Lea - What does NoSQL Mean for You by
Chris Lea - What does NoSQL Mean for YouChris Lea - What does NoSQL Mean for You
Chris Lea - What does NoSQL Mean for YouCarsonified Team
3.3K views40 slides
Tara Hunt - Your Social Media Strategy Wont Save You by
Tara Hunt - Your Social Media Strategy Wont Save YouTara Hunt - Your Social Media Strategy Wont Save You
Tara Hunt - Your Social Media Strategy Wont Save YouCarsonified Team
5K views74 slides
Dion Almaer & Ben Galbraith - Build Once, Deploy Everywhere by
Dion Almaer & Ben Galbraith - Build Once, Deploy EverywhereDion Almaer & Ben Galbraith - Build Once, Deploy Everywhere
Dion Almaer & Ben Galbraith - Build Once, Deploy EverywhereCarsonified Team
2.6K views43 slides
Steve Huffman - Lessons learned while at reddit.com by
Steve Huffman - Lessons learned while at reddit.comSteve Huffman - Lessons learned while at reddit.com
Steve Huffman - Lessons learned while at reddit.comCarsonified Team
9.7K views16 slides
Neil Patel - What You Need to be Measuring and How to Do It by
Neil Patel - What You Need to be Measuring and How to Do ItNeil Patel - What You Need to be Measuring and How to Do It
Neil Patel - What You Need to be Measuring and How to Do ItCarsonified Team
2.7K views26 slides
Molly Holzschlag - How HTML 5 is Going to Completely Change your Web App by
Molly Holzschlag - How HTML 5 is Going to Completely Change your Web AppMolly Holzschlag - How HTML 5 is Going to Completely Change your Web App
Molly Holzschlag - How HTML 5 is Going to Completely Change your Web AppCarsonified Team
3.6K views17 slides

More from Carsonified Team(20)

Chris Lea - What does NoSQL Mean for You by Carsonified Team
Chris Lea - What does NoSQL Mean for YouChris Lea - What does NoSQL Mean for You
Chris Lea - What does NoSQL Mean for You
Carsonified Team3.3K views
Tara Hunt - Your Social Media Strategy Wont Save You by Carsonified Team
Tara Hunt - Your Social Media Strategy Wont Save YouTara Hunt - Your Social Media Strategy Wont Save You
Tara Hunt - Your Social Media Strategy Wont Save You
Carsonified Team5K views
Dion Almaer & Ben Galbraith - Build Once, Deploy Everywhere by Carsonified Team
Dion Almaer & Ben Galbraith - Build Once, Deploy EverywhereDion Almaer & Ben Galbraith - Build Once, Deploy Everywhere
Dion Almaer & Ben Galbraith - Build Once, Deploy Everywhere
Carsonified Team2.6K views
Steve Huffman - Lessons learned while at reddit.com by Carsonified Team
Steve Huffman - Lessons learned while at reddit.comSteve Huffman - Lessons learned while at reddit.com
Steve Huffman - Lessons learned while at reddit.com
Carsonified Team9.7K views
Neil Patel - What You Need to be Measuring and How to Do It by Carsonified Team
Neil Patel - What You Need to be Measuring and How to Do ItNeil Patel - What You Need to be Measuring and How to Do It
Neil Patel - What You Need to be Measuring and How to Do It
Carsonified Team2.7K views
Molly Holzschlag - How HTML 5 is Going to Completely Change your Web App by Carsonified Team
Molly Holzschlag - How HTML 5 is Going to Completely Change your Web AppMolly Holzschlag - How HTML 5 is Going to Completely Change your Web App
Molly Holzschlag - How HTML 5 is Going to Completely Change your Web App
Carsonified Team3.6K views
Mike Mcderment - Marketing Metrics and the Systems You Need to Measure Them by Carsonified Team
Mike Mcderment - Marketing Metrics and the Systems You Need to Measure ThemMike Mcderment - Marketing Metrics and the Systems You Need to Measure Them
Mike Mcderment - Marketing Metrics and the Systems You Need to Measure Them
Carsonified Team3.2K views
Fred Wilson - The 10 Golden Principles for Successful Web Apps by Carsonified Team
Fred Wilson - The 10 Golden Principles for Successful Web AppsFred Wilson - The 10 Golden Principles for Successful Web Apps
Fred Wilson - The 10 Golden Principles for Successful Web Apps
Carsonified Team3.3K views
Alex Payne - Speedy, Stable, and Secure: Better Web Applications Through Func... by Carsonified Team
Alex Payne - Speedy, Stable, and Secure: Better Web Applications Through Func...Alex Payne - Speedy, Stable, and Secure: Better Web Applications Through Func...
Alex Payne - Speedy, Stable, and Secure: Better Web Applications Through Func...
Carsonified Team3.1K views
Aaron Patzer - How to Take Your Start-up to the Next Level by Carsonified Team
Aaron Patzer - How to Take Your Start-up to the Next LevelAaron Patzer - How to Take Your Start-up to the Next Level
Aaron Patzer - How to Take Your Start-up to the Next Level
Carsonified Team7.7K views
Taking your Site from One to One Million Users by Kevin Rose by Carsonified Team
Taking your Site from One to One Million Users by Kevin RoseTaking your Site from One to One Million Users by Kevin Rose
Taking your Site from One to One Million Users by Kevin Rose
Carsonified Team46K views
The New Marketing, by Ryan Carson by Carsonified Team
The New Marketing, by Ryan CarsonThe New Marketing, by Ryan Carson
The New Marketing, by Ryan Carson
Carsonified Team2.1K views

Recently uploaded

Integrating Talent Management Practices by
Integrating Talent Management PracticesIntegrating Talent Management Practices
Integrating Talent Management PracticesSeta Wicaksana
28 views29 slides
Building Careers at Specialty TRE 2023 by
Building Careers at Specialty TRE 2023Building Careers at Specialty TRE 2023
Building Careers at Specialty TRE 2023Jennifer Sanborn
45 views22 slides
Monthly Social Media Update November 2023 copy.pptx by
Monthly Social Media Update November 2023 copy.pptxMonthly Social Media Update November 2023 copy.pptx
Monthly Social Media Update November 2023 copy.pptxAndy Lambert
16 views49 slides
bookmyshow-1.pptx by
bookmyshow-1.pptxbookmyshow-1.pptx
bookmyshow-1.pptx125071035
11 views11 slides
Defcon Network.pdf by
Defcon Network.pdfDefcon Network.pdf
Defcon Network.pdfJesse Mauck
17 views4 slides

Recently uploaded(20)

Integrating Talent Management Practices by Seta Wicaksana
Integrating Talent Management PracticesIntegrating Talent Management Practices
Integrating Talent Management Practices
Seta Wicaksana28 views
Monthly Social Media Update November 2023 copy.pptx by Andy Lambert
Monthly Social Media Update November 2023 copy.pptxMonthly Social Media Update November 2023 copy.pptx
Monthly Social Media Update November 2023 copy.pptx
Andy Lambert16 views
bookmyshow-1.pptx by 125071035
bookmyshow-1.pptxbookmyshow-1.pptx
bookmyshow-1.pptx
12507103511 views
See the new MTN tariffs effected November 28, 2023 by Kweku Zurek
See the new MTN tariffs effected November 28, 2023See the new MTN tariffs effected November 28, 2023
See the new MTN tariffs effected November 28, 2023
Kweku Zurek29.4K views
NYKAA PPT .pptx by 125071081
NYKAA PPT .pptxNYKAA PPT .pptx
NYKAA PPT .pptx
12507108113 views
davood_keshavarz_david_keshavarz_criminal_conviction_prison_sentence_judgemen... by morshedislam3
davood_keshavarz_david_keshavarz_criminal_conviction_prison_sentence_judgemen...davood_keshavarz_david_keshavarz_criminal_conviction_prison_sentence_judgemen...
davood_keshavarz_david_keshavarz_criminal_conviction_prison_sentence_judgemen...
morshedislam312 views
CORPORATE COMMUNICATION.pdf by AKarthikeyan8
CORPORATE COMMUNICATION.pdfCORPORATE COMMUNICATION.pdf
CORPORATE COMMUNICATION.pdf
AKarthikeyan812 views
Top 10 Web Development Companies in California by TopCSSGallery
Top 10 Web Development Companies in CaliforniaTop 10 Web Development Companies in California
Top 10 Web Development Companies in California
TopCSSGallery44 views
Imports Next Level.pdf by Bloomerang
Imports Next Level.pdfImports Next Level.pdf
Imports Next Level.pdf
Bloomerang80 views
Bloomerang_Forecasting Your Fundraising Revenue 2024.pptx.pdf by Bloomerang
Bloomerang_Forecasting Your Fundraising Revenue 2024.pptx.pdfBloomerang_Forecasting Your Fundraising Revenue 2024.pptx.pdf
Bloomerang_Forecasting Your Fundraising Revenue 2024.pptx.pdf
Bloomerang112 views
Accounts Class 12 project cash flow statement and ratio analysis by JinendraPamecha
Accounts Class 12 project cash flow statement and ratio analysisAccounts Class 12 project cash flow statement and ratio analysis
Accounts Class 12 project cash flow statement and ratio analysis
JinendraPamecha22 views
The Truth About Customer Journey Mapping by Aggregage
The Truth About Customer Journey MappingThe Truth About Customer Journey Mapping
The Truth About Customer Journey Mapping
Aggregage60 views

Jina Bolton