File 1.14
<iframe frameborder="0" width="400px" height="100px" src="https://drive.google.com/file/d/fgdsfgsfg/preview?usp=sharing">
File 1.14
<iframe frameborder="0" width="400px" height="100px" src="https://drive.google.com/file/d/fgdsfgsfg/preview?usp=sharing">
<!-- Responsive Table below - 2 Columns -->
<div style="width: 100%; display: table;">
<div style="display: table-row-group;">
<div style="display: table-row;">
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/269-quality-improvement-fundamentals-methodology-and-tools-summary-guidebook/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/269-Quality-Improvement-Fundamentals-Methodology-and-Tools-Guidebook-1.png" width="200px" /></a>
</div>
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/268-quality-control-plan-template/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/268-Quality-Control-Plan-Template-1.png" width="200px" /></a>
</div>
</div>
</div>
</div>
<!-- Responsive Table above - 2 Columns -->
<!-- Responsive Table below - 3 Columns -->
<div style="width: 100%; display: table;">
<div style="display: table-row-group;">
<div style="display: table-row;">
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/269-quality-improvement-fundamentals-methodology-and-tools-summary-guidebook/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/269-Quality-Improvement-Fundamentals-Methodology-and-Tools-Guidebook-1.png" width="200px" /></a>
</div>
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/268-quality-control-plan-template/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/268-Quality-Control-Plan-Template-1.png" width="200px" /></a>
</div>
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/267-safety-handbook-aramco/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/267-Aramco-Safety-Handbook-free-download.png" width="200px" /></a>
</div>
</div>
</div>
</div>
<!-- Responsive Table above - 3 Columns -->
<!-- Responsive Table below - 4 Columns -->
<div style="width: 100%; display: table;">
<div style="display: table-row-group;">
<div style="display: table-row;">
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/269-quality-improvement-fundamentals-methodology-and-tools-summary-guidebook/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/269-Quality-Improvement-Fundamentals-Methodology-and-Tools-Guidebook-1.png" width="200px" /></a>
</div>
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/268-quality-control-plan-template/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/268-Quality-Control-Plan-Template-1.png" width="200px" /></a>
</div>
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/267-safety-handbook-aramco/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/267-Aramco-Safety-Handbook-free-download.png" width="200px" /></a>
</div>
<div style="display: table-cell; vertical-align: top;" align="center">
<a href="http://entirelysafe.com/267-safety-handbook-aramco/">
<img src="http://entirelysafe.com/kladovka/uploads/2022/04/267-Aramco-Safety-Handbook-free-download.png" width="200px" /></a>
</div>
</div>
</div>
</div>
<!-- Responsive Table above - 4 Columns -->
/* Sticky Side Bar */
.sticky-column {
position: -webkit-sticky;
position: sticky;
top: 3rem;
background-color: #f6f6f9;
}
@media (max-width: 600px) {
.sticky-column {
position: relative !important;
}
}
To group CSS selectors in a style sheet, use commas to separate multiple grouped selectors in the style. In this example, the style affects the p and div elements:
div, p { color: #f00; }
In this context, a comma means "and," so this selector applies to all paragraph elements and all division elements. If the comma were missing, the selector would instead apply to all paragraph elements that are a child of a division. That is a different kind of selector, so the comma is important.
You can group any form of selector with any other selector. This example groups a class selector with an ID selector:
p.red, #sub { color: #f00; }
This style applies to any paragraph with the class attribute of red and any element (because the kind is not specified) with an ID attribute of sub.
You can group any number of selectors, including selectors that are single words and compound selectors. This example includes four different selectors:
p, .red, #sub, div a:link { color: #f00; }
This CSS rule would apply to:
That last selector is a compound selector. As shown, it's easily combined with the other selectors in this CSS rule. The rule sets the color of #f00 (red) on these four selectors, which is preferable to writing four separate selectors to achieve the same result.
You can place any valid selector in a group, and all elements in the document that match all the grouped elements will have the same style based on that style property.
Some designers prefer to list the grouped elements on separate lines for legibility in the code. The appearance on the website and the load speed remains the same. For example, you can combine styles separated by commas into one style property in one line of code:
th, td, p.red, div#firstred { color: red; }
or you can list the styles on individual lines for clarity:
th,
td,
p.red,
div#firstred
{
color: red;
}
Grouping CSS selectors helps minimize the size of your stylesheet so it loads faster Admittedly, style sheets are not the main culprits in slow loading; CSS files are text files, so even very long CSS sheets are tiny when compared to unoptimized images. Still, every bit of optimization helps, and if you can shave some size off your CSS and load the pages that much faster, that's a good thing.
Grouping selectors also makes site maintenance far easier. If you need to make a change, you can simply edit a single CSS rule instead of multiple ones. This approach saves time and hassle.
The bottom line: Grouping CSS selectors boost efficiency, productivity, organization, and in some cases, even load speed.
› for arrow
https://www.w3schools.com/charsets/ref_utf_punctuation.asp
Try it - https://www.w3schools.com/charsets/tryit.asp
Add this to your css file:
.instagram-media {
max-width: 100% !important;
width: 100% !important;
min-width: auto !important;
}
Good thread here:
Good resources: