Find Interview Questions for Top Companies
Realization technologies Interview Questions and Answers
Ques:- Why do style sheets exist?
Right Answer:
Style sheets exist to separate content from presentation, allowing for consistent styling across multiple pages, easier maintenance, and improved loading times.
Ques:- How do I combine multiple sheets into one?
Right Answer:
To combine multiple sheets into one in CSS, you can use the `@import` rule to import styles from different CSS files into a single main stylesheet. Alternatively, you can manually copy and paste the CSS rules from each sheet into one file.
Ques:- How can you set a minimum width for IE?
Right Answer:
You can set a minimum width for IE using the `min-width` property in CSS. For better compatibility, you can also use a conditional comment to target IE specifically and apply a fallback using `width` or `min-width` in pixels. For example:

```css
.post-title {
min-width: 300px; /* Standard way */
}

/* For IE 6-8 */
<!--[if lt IE 9]>
<style>
.post-title {
width: 300px; /* Fallback for older IE */
}
</style>
<![endif]-->
```
Ques:- What is a Smart Object?
Right Answer:
A Smart Object in Photoshop is a layer that contains image data from raster or vector images, allowing you to perform non-destructive editing, such as scaling, transforming, and applying filters without losing the original image quality.
Ques:- What is alternate Style Sheet? How to link?
Right Answer:
An alternate style sheet is a CSS file that provides different styling options for a webpage, allowing users to switch between styles. To link an alternate style sheet in HTML, use the `<link>` tag with the `rel` attribute set to "alternate stylesheet" and specify the `title` attribute for identification. For example:

```html
<link rel="stylesheet" type="text/css" href="style1.css" title="Style 1">
<link rel="alternate stylesheet" type="text/css" href="style2.css" title="Style 2">
```

Users can then select the alternate style through a user interface or browser settings.
AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users