Skip to content

Instantly share code, notes, and snippets.

@mamiu
Created November 19, 2015 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mamiu/d6a8ee95ae41cc5e6765 to your computer and use it in GitHub Desktop.
Save mamiu/d6a8ee95ae41cc5e6765 to your computer and use it in GitHub Desktop.
Chrome extension improvement for "LEO Dictionary Quick Search Pop-up" (pda.leo.org instead of dict.leo.org)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
iframe {
border: none;
/* Scrolling: no */
overflow: hidden;
}
#leo {
width: 650px;
height: 400px;
overflow-y: hidden;
overflow-x: hidden;
position: relative;
}
#leo iframe {
position: absolute;
top: -93px;
width: 650px;
height: 493px;
}
</style>
<title>LEO Dictionary Quick Search Pop-up</title>
</head>
<body>
<div id='leo'><iframe src='http://pda.leo.org'></iframe></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment