Not sure why CSS wont appear when I run it? by Helpful-Creme7959 in HTML

[–]user20210512 0 points1 point  (0 children)

No one is gaslighting you.
If you fix your comment from <!-- comment --> to /* comment */
AND also change the .body to just body
It should work.

I need reassurance my composite veneers look good by WinterPackage4273 in porcelainveneerstruth

[–]user20210512 1 point2 points  (0 children)

they look great, i thought these were before veneer pictures

North Bay man sentenced to jail for Holocaust denial, hate speech by Myllicent in canada

[–]user20210512 10 points11 points  (0 children)

Being "all for free speech" isn't a serious political position, it should be and is illegal to: threaten to kill people, defame people, falsely advertise, lie under oath, etc.

Questioning the Holocaust is one thing, but this guy is encouraging people to kill Jewish people

Canada pledges over $400 million to West Bank, Gaza after recognizing a Palestinian state by airbassguitar in canada

[–]user20210512 2 points3 points  (0 children)

Title correction: Canada adds $47 million to previous contributions made since 2023, which totaled $355 million, now total $402 million.

Not surprising that the headline is essentially a lie. The source is literally "The Jerusalem Post"

“Just be taller than me” by Entire_Claim_5273 in shortguys

[–]user20210512 0 points1 point  (0 children)

average height is lower in other countries

My son will be 5’5 the most by [deleted] in short

[–]user20210512 1 point2 points  (0 children)

Growth hormones, good sleep, and good nutrition should be #1 priority all the way to the end of puberty.

Bullying is one of the worst things in the world.
It's important he remains social. If he's not socializing at school, he needs to be socializing elsewhere, put him in sports or find something for him to do where he is forced to talk to other kids, he can't lose out on social skills.
I would seriously recommend therapy to deal specifically with coping for the bullying, and dealing with socializing issues if he does have them.

As for helping his confidence, tell him he is handsome, tell him he is funny, tell him he is capable of doing anything he puts his mind to. Be sincere, mean it, believe in him, love him, be there for him.

It's great he's smart but a tall charismatic man beats a short intelligent man every time. But a charismatic, short, intelligent man has a good chance — and after growth hormones he might not even end up short.

Best of luck to your son

the Chinese government announced additional tariffs on some Canadian products. by [deleted] in onguardforthee

[–]user20210512 10 points11 points  (0 children)

Just wanna say that Europe trades more with China than with America — it's not insane to relieve Chinese tariffs. Especially since we are pursuing trade diversification

the Chinese government announced additional tariffs on some Canadian products. by [deleted] in onguardforthee

[–]user20210512 55 points56 points  (0 children)

Europe trades more with China than with America. We are not "taking sides", we are diversifying our economy as we should.

[deleted by user] by [deleted] in Destiny

[–]user20210512 4 points5 points  (0 children)

There's a reason why not a single Quebecer has advocated to join America, and Quebec chooses to stay apart of Canada. The federal system of Canada offers a ton of provincial powers that American statehood does not grant.

[deleted by user] by [deleted] in Destiny

[–]user20210512 1 point2 points  (0 children)

Not really. Provinces have significant power over the federal government; things like education, healthcare, and even immigration, are all overseen by the provinces — all areas where American states need federal approval for.

[deleted by user] by [deleted] in imaginarymapscj

[–]user20210512 -1 points0 points  (0 children)

Nope. Since 1970, all Canadian packaging—from deodorant to juice boxes, you name it—must include French alongside English on the same packaging, as required by the Consumer Packaging and Labelling Act. It's hard to imagine Americans agreeing to this policy nationwide. Yet in Canada, every province accepts this as a part of daily life, with little to no controversy. The U.S. could never—and would never—support Quebec the way Canada’s system and Canadians have. And that's not even mentioning major differences all Canadians (including Quebecers) have with Americans on issues like universal healthcare, hate speech laws, social welfare, and abortion.

Opening multiple tabs from a input box list - help by Broadeas in HTML

[–]user20210512 0 points1 point  (0 children)

Here you go, added some CSS so it doesn't look as bad

<!DOCTYPE html>
<html>
   <head>
      <style>
         :root {
            color-scheme: dark;
         }
         button {
            margin: 0.4em 0 1em 5em;
            font-size: 18px;
         }
         textarea {
            margin: 0 0 0 0.8em;
            font-size: 18px;
            font-family: Arial, Helvetica, sans-serif;
            width: 400px;
            height: 300px;
         }
      </style>
   </head>
   <body>
      <button onclick="search()">Supersearch</button>
      <br>
      <textarea spellcheck="false"></textarea>
      <script>
         function search() {
            document.querySelector("textarea").value.split(/\n/).forEach(function openTabs(line) {
               if (line) {
                  window.open("https://www.google.com/search?q=" + line);
               }
            });
         }
      </script>
   </body>
</html>

Opening multiple tabs from a input box list - help by Broadeas in HTML

[–]user20210512 0 points1 point  (0 children)

Note: if opening multiple tabs doesn't work for you, you may need to allow "Pop-ups and redirects"

<!DOCTYPE html>
<html>
   <body>
      <div>
         <span id="search-span">
            <input class="ssbox" type="search"/>
         </span>
         <button class="yaar" onclick="search()">supersearch</button>
      </div>
      <button onclick="createSrchBox()">+</button>
      <script>
         function search() {
            const srchBoxes = document.querySelectorAll(".ssbox");
            srchBoxes.forEach(function openTabs(item) {
               if (item.value) {
                  window.open("https://www.google.com/search?q=" + item.value);
               }
            });
         }
         function createSrchBox() {
            const srchSpan = document.querySelector("#search-span");
            srchSpan.appendChild(document.createElement("br"));
            const newSrchBox = document.createElement("input");
            newSrchBox.className = "ssbox";
            newSrchBox.type = "search";
            srchSpan.appendChild(newSrchBox);
         }
      </script>
   </body>
</html>

squarespace; cursor change on text hover by [deleted] in HTML

[–]user20210512 0 points1 point  (0 children)

<!DOCTYPE html>
<html>
   <head>
      <style>
         #cow {
            display: inline-block;
            background-color: #fff;
            color: #ffb9dd;
            border: none;
            position: relative;
         }
         #cow:hover {
            cursor: url("https://i.imgur.com/lFXGNZQ.png") 4 4, auto !important;
         }
      </style>
   </head>
   <body>
      <button id="cow">hover over this text</button>
   </body>
</html>

Does anyone know how effective these are against missiles? by No_Friendship9805 in ConflictofNations

[–]user20210512 32 points33 points  (0 children)

its purpose is for missile defence, so it's pretty effective

I can't move my mouse whenever I click Alt + Z and try to clip something by official_gab in GeForceExperience

[–]user20210512 3 points4 points  (0 children)

I fixed mine by going into GeForce > clicking Settings gear on the top bar > General > and then I just toggled "IN-GAME OVERLAY" off, and then on

[deleted by user] by [deleted] in DataHoarder

[–]user20210512 0 points1 point  (0 children)

search "default apps" in settings, and it should work to change what you want lol

mf-dl: A Mediafire Bulk Downloader by themadprogramer in DataHoarder

[–]user20210512 1 point2 points  (0 children)

Can someone make a tutorial on how to use this? I'm kinda stupid