Questions tagged [outline]

outline is a property in CSS, that is used to draw a line around the element. Question that has the problem related to outline property of CSS.

An outline is a line that is drawn around elements (outside the borders).

The outline is not a part of the element's dimensions, therefore the element's width and height properties do not contain the width of the outline.

This link contains the example of outline .

The tutorial is here.

473 questions
0
votes
4 answers

how to remove textbox outline in Opera

I tested the below code but gain no success: input[type="text"]:focus, input[type="password"]:focus { outline:none; -moz-transition: box-shadow 0.3s ease-out 0s; background-clip: padding-box; border: 1px solid #B6B6B6; …
Alireza
  • 6,497
  • 13
  • 59
  • 132
-1
votes
1 answer

Python, transparent window with a red outine of a rectangle

Hi I am new to this whole coding thing I was suggested to use Python. The version I have now is 2.7. I need help with making a transparent window to the copacity of 100 so that you can actually see through it and I also want to know how to make a…
Aryan H
  • 11
-1
votes
1 answer

How to get rid of outline around button when focused in jsx element

Would like to get rid of the blue outline that appears around button when focused. this is being rendered as jsx element. I've tried the following
-1
votes
1 answer

CSS outline is not sharp rectangular

I don't want my outline to have rounded corners, but it becomes rounded while it is getting wider during the animation. Edit: I'm getting the following appearance in Linux, MS Edge, and looking at your reaction I tried it on Mozilla Firefox, it…
ibrahim koz
  • 537
  • 4
  • 15
-1
votes
1 answer

Real outline for text

Is it possible to easily outline text with html/css? I don't mean putting a shadow behind it with text-shadow property but outlining the text with strokes.
Hanzilka
  • 7
  • 4
-1
votes
1 answer

Outline of button not fulling showing

I'm trying to give the buttons on my site the "outline" style when active, but for some reason the full outline isn't appearing. As you can see in this screenshot the top portion of the button is cut off. This didn't happen when it was just a solid…
d.girdy
  • 29
  • 4
-1
votes
0 answers

How to remove Focus Outline from Input type=“file” in internet explorer?

I know there are other questions like this but I've tried everything they have suggested. This is a different question. If I use Input type="file" then I see a dotted outline in internet explorer. a { outline: 0; } object, embed { …
Jerold Joel
  • 227
  • 1
  • 9
  • 22
-1
votes
2 answers

outline manager ,firewall rules are blocking incoming connections

[{ OUTLINE VPN }](https://getoutline.org/en/home"download here") Server(**Linux **) I had been configuring a server for outline Virtual private network: I installed docker and enabled it. Setup Firewall with a long list of rules allowing all the…
-1
votes
1 answer

remove outline from button when clicked

#hamburger-btn :focus :active{ outline: 0 !important; border: 0 !important; } I am trying to…
Ahmed
  • 1,229
  • 2
  • 20
  • 45
-1
votes
2 answers

Bootstrap current active dom element color switch?

I would like to change the default outline glow of bootstrap for any dom element. I already did it for inputs and buttons but on any other element it is still blue. So for example, I press TAB on my keyboard and it goes to next element and it glows…
lion
  • 97
  • 2
  • 13
-1
votes
1 answer

How to make a button with outline of a dog bone using css?

I looked for this but couldn't find it. I am making a pet care website and I want to make some of the buttons in the shape of a bone while still functioning like a normal button (hover functions). Instead of a rounded or rectangular shaped button is…
-1
votes
2 answers

HTML and CSS text background black

I don't know how to get rid of the black behind the navs. It seems to me all the css styling is not black when I review each element. Here is a photo of my problem. @charset "UTF-8"; /* CSS Document */ * { background-color:…
mal phe
  • 13
  • 1
  • 3
-1
votes
1 answer

Outline detection from patterns in a list of textual articles

Are there NLP algorithms dealing with detecting the repeating patterns in a a list of texts from which a topic keywords and other associative keywords can be derived? I will show it as an example: You have a search query "vegan food for something…
xralf
  • 3,312
  • 45
  • 129
  • 200
-1
votes
1 answer

How to outline stroke c#?

We want to outlined font. But we can't give stroke(outline-contour). Contour interior was correct. What should we do to the stroke to outside? Example:
Erdil
  • 3
  • 3
-1
votes
4 answers

remove the border when focusing on an input box

There are other things on SO regarding this, but none of the solutions seem to work. I'm trying to get rid of the light blue border that Google Chrome puts around any input box. My code: #alphatxt:focus { border: 0; outline:none; } It works…
scottdavidwalker
  • 1,118
  • 1
  • 12
  • 30
1 2 3
31
32