mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
26 lines
395 B
HTML
26 lines
395 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.nav-submit-button {
|
|
float: right;
|
|
}
|
|
#nav-search-in {
|
|
float: left;
|
|
}
|
|
.nav-searchfield-width {
|
|
height: 35px;
|
|
overflow: hidden;
|
|
border: solid black 1px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<form id="nav-searchbar">
|
|
<div class="nav-submit-button">Foo</div><span id="nav-search-in">Bar</span>
|
|
<div class="nav-searchfield-width"></div>
|
|
</form>
|
|
</body>
|
|
</html>
|