JSFiddle - React, Tailwind, and code Playground

HTML

<div class="style"></div>

CSS

.style {
      max-width: 300px;
      max-height: 300px;
      overflow:auto;

JavaScript

$.ajax({
        url:"//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/css/bootstrap-theme.min.css"
    })
    .done(function(result){
        $('.style').html(result);
    });