Inner and Outer rounded border [closed] - html

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Good day!
I am trying to make a widget, my code is as follows: http://jsfiddle.net/SeWCg/
The problem is that there is a white space between the inner and the outer rounded border.
How can i resolve this?

change
.widget1{
width: 218px;
height: 210px;
background-color: white;
}
to
.widget1{
width: 218px;
height: 210px;
}

Related

One sided circle div [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I would like to create something like representing in the picture. I've tried different methods but none is delivering my expectation. I'm not sure how, does anyone have any idea how it should be done? https://i.stack.imgur.com/lrb7f.png
You can use border-top-left-radius and
border-bottom-left-radius:
div {
height: 200px;
width: 600px;
border-top-left-radius: 100px;
border-bottom-left-radius: 100px;
background: black;
}
<div></div>

How can I make effect at the bottom of input while hovering? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I'm looking for some techlogy that I can make an effect at the bottom of <input> element when I hover on it. Like this:
If I understand correctly, you're looking for box-shadow property. Like this:
input {
width: 280px;
height: 20px;
border: 3px inset;
}
input:hover {
box-shadow: 0 2px cyan;
}
<input type="text">

Vertical link in page sides [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
How can I have links in my pages sides like places i colored in image below and move as page scrolls (fixed position)?
With that amount of information I can give you this much of an answer
HTML
left
right
CSS
.aside-fixed {
position: fixed;
z-index: 20;
top: 50%;
background: black;
padding: 10px;
color: white;
}
.aside-left {
left: 0;
}
.aside-right {
right: 0;
}

Link the logo - HTML- CSS [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
Which is the best way to link the logo to in the following scenario? Shall I replace the DIV with Link or can i do something in CSS.
The question is can you link the DIV(logo) from the CSS itself
CSS
.login-container .login-box .login-logo {
background: url("img/logo.png") top center no-repeat;
width: 100%;
height: 149px;
float: left;
margin-bottom: 20px;
}
HTML
<div class="login-logo"></div>
This will be best to link your logo Link
Yup, as you mentioned using an anchor tag instead of a div for your logo is the cleanest solution here. You can keep using the same class, then you shouldn't have to revise the CSS much if at all.

How to bring an element outside of its parent element using CSS? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have a markup that looks like this:
<div>
<ul>
<li>Uno</li>
<li>Dos</li>
</ul>
</div>
Basically, what I want to do is bring the <ul> outside of its parent . How can I do this using CSS if possible? Thanks.
div{ position: relative; }
ul{ position: absolute; top: 100%; }
https://jsfiddle.net/zuremvwh/