পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Wednesday, February 15, 2017

CSS3 - User Interface

The user interface property allows you to change any element into one of several standard user interface elements.
Some of the common properties which are using in css3 User interface.

Values Description
appearance Used to allow the user to make elements as user interface elements
box-sizing Allows to users to fix elements on area in clear way
icon Used to provide the icon on area
resize Used to resize elements which are on area
outline-offset Used to draw the behind the outline
nav-down Used to move down when you have pressed on down arrow button in keypad
nav-left Used to move left when you have pressed on left arrow button in keypad
nav-right Used to move right when you have pressed on right arrow button in keypad
nav-up Used to move up when you have pressed on up arrow button in keypad

Example of resize property

Resize property is having three common values as shown below
  • horizontal
  • vertical
  • both
Using of both value in resize property in css3 user interface
<html>
   <head>
      <style>
         div {
            border: 2px solid;
            padding: 20px; 
            width: 300px;
            resize: both;
            overflow: auto;
         }
      </style>
   </head>
   <body>
      <div>TutorialsPoint.com</div>
   </body>
</html>
It will produce the following result −

CSS3 Outline offset

Out line means draw a line around the element at outside of boarder.
<html>
   <head>
      <style>
         div {
            margin: 20px;
            padding: 10px;
            width: 300px; 
            height: 100px;
            border: 5px solid pink;
            outline: 5px solid green;
            outline-offset: 15px;
         }
      </style>
   </head>
   <body>
      <div>TutorialsPoint</div>
   </body>
</html>
It will produce the following result −

No comments:

Post a Comment