Posts

Showing posts matching the search for CSS

    Powered by Thakur Technologies

    CSS Interview Questions

    Image
    A List of CSS interview questions along with their answers and Code that are commonly asked by companies: 1. What is CSS, and what does it stand for? Answer: CSS stands for Cascading Style Sheets. It is a style sheet language used to describe the presentation of a document written in HTML. 2. Explain the concept of the "box model" in CSS. W ith a code example. Answer: The box model in CSS describes the layout of elements on a web page, including content, padding, border, and margin. /* Code: The box model includes content, padding, border, and margin. */ .box {    width: 200px;    padding: 20px;    border: 2px solid #333;    margin: 10px; } 3. How can you hide an element on a web page? Answer: You can set the CSS display property of the element to none . This will remove the element from the normal flow of the document, effectively hiding it. Here's an example: /* Code: Using display: none; or visibility: hidden; */ .hidden-element { displ...

    Advance Internet Technology (AIT) Questions & Answers

    Image
    Most Asked Questions & Answers Q- What is the purpose of web testing tools? Give examples of some commonly used web testing tools and their functionalities. Ans - Purpose of Web Testing Tools: Web testing tools are software applications designed to comprehensively evaluate various aspects of a web application or website. Their primary function is to identify and expose potential issues before a website goes live, ensuring a high-quality and user-friendly experience. These tools streamline the testing process by automating repetitive tasks and providing in-depth insights into functionality, performance, security, and compatibility. Common Web Testing Tools and Functionalities: Here's a glimpse into some popular web testing tools and their functionalities: Selenium: This open-source powerhouse automates web browser interactions. It excels at recording and replaying user actions, along with creating scripts to test specific functionalities within a web application. Cypress: An...







    Powered by Thakur Technologies