-1

I am trying to apply jquery Css Library for an specific <div> only rather than whole page as it is messing my whole page while applying. Below is the css I have tried but it is yet applying to whole page

#myPopup3{
@include '<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">';
}

how to apply the link only for #myPopup3 <div>

Purva Shukla
  • 74
  • 1
  • 7
roy
  • 131
  • 1
  • 10

1 Answers1

1

<div>
      <style scoped>
        @import "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css";
      </style>
      <div data-role="popup" id="myPopup3" class="ui-content">
        <p>I will appear directly over the clicked link.</p>
      </div>
    </div>
Hp Lam
  • 343
  • 1
  • 9