Skip to content

montyaction/HTML-del_and_ins_as_a_tooltip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTML DEL & INS Tag as a Tooltip

This is a example for HTML del and ins tag as a Tooltip.This example help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

  • Build out the project to the designs provided

Screenshot

After Hover

Before Hover

Demo Video

Links

My process

Built with

  • HTML
  • Ins Tag
  • Del Tag
  • Hover Effect
  • Responsive Design
  • Sass - Css preprocesor

What I learned

Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.

To see how you can add code snippets, see below:

    <P>
        The
        <span>
            <ins>quick</ins>
            <del>speedy</del>
        </span>
        brown for
        <span>
            <ins>jumped</ins>
            <del>leapt</del>
        </span>
        over the
        <span>
            <ins>lazy</ins>
            <del>deadbeat</del>
        </span>
        dog
    </P>
ins{
  animation: fadeInIns .25s 1s ease-in forwards;
}

@keyframes fadeInIns {
    from {
        background: transparent;
    }
    to {
        background: #6db723;
    }
}

Useful resources

  • W3 School - This helped me for my basic knowledge. I really liked this pattern and will use it going forward.
  • MDN - This is an amazing article which helped me finally understand meaning each code. I'd recommend it to anyone still learning this concept.

Author

About

HTML tags <del> & <ins> as a tooltip with pure CSS.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published