I have the following:
<html ng-app="app">
<head>
<title>aprobado</title>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/js/materialize.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="js/highcharts.js"></script>
<style type="text/css"></style>
</head>
<body ng-controller="main">
<div id="chart" style="width:100%; height:400px; padding: 150px 0px;"></div>
<div id="container"></div>
</body>
</html>
The problem is that when I add the libraries of materialize
they overwrite some styles of highcharts. In addition, the different svg is added.
How can I make the aforementioned libraries (those of materialize
) only affect certain tags?