skip to Main Content

Html – About 'media="(min-width: 0px)" '

About this code (I found a similar code on the Apple website): <picture> <source srcset="1.jpg, 1_2x.jpg 2x" media="(max-width: 734px)" /> <source srcset="2.jpg, 2_2x.jpg 2x" media="(max-width: 1068px)" /> <source srcset="0.jpg, 0_2x.jpg 2x" media="(min-width: 0px)" /> <img src="0.jpg" alt /> </picture> Question…

VIEW QUESTION

HTML for UI design

I want to be able to develop my user interface designs from figma. Do I need to learn HTML or just CSS and Javascript? And what are the best resources for that? So far in dev mode, I've only seen…

VIEW QUESTION

What does && in javascript mean when used on html elements?

When updating Google Tag Manager to support CSP and nonce, they say to use this script: (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;var n=d.querySelector('[nonce]'); n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-XXXXXX'); The n&&j.setAttribute() is confusing to me; not sure if it's just a lack of Javascript…

VIEW QUESTION

Html – CSS: How to toggle the borders of a specific table column without twitching

function toggleBorders() { table.tHead.firstElementChild.children[1].classList.toggle('thick-border'); Array.from(table.tBodies[0].children).forEach(row => row.children[1].classList.toggle('thick-border')); } table { border-collapse: collapse; } th.thick-border, td.thick-border { border: 3px solid coral; border-top: none; border-bottom: none; } <table id="table"> <thead> <tr> <th>h1</th> <th>h2</th> <th>h3</th> <th>h4</th> </tr> </thead> <tbody> <tr> <td>11</td> <td>12</td> <td>13</td>…

VIEW QUESTION

Pass a value from one Php to another Php page

I'm trying to invoke job.php from careers.php using the code below. Could someone help me identify what might be wrong or suggest a better approach? careers.php: <div class="trending-lower-text d-flex align-items-center justify-content-between"> <a class="custom-btn btn1" href=“aform.php"><span>Apply</span></a> <form id="hiddenForm" action="job.php" method="post"> <input…

VIEW QUESTION
Back To Top
Search